equal
deleted
inserted
replaced
1 {% for note in site.data.bacon %} |
1 {% for note in site.data.bacon %} |
2 {{ note | markdownify }} |
2 <div class="row note mb-2"> |
|
3 <div class="col col-3 d-flex flex-column justify-content-between small text-muted text-right metadata"> |
|
4 <div>10:20</div> |
|
5 <div class="filler"></div> |
|
6 <div>10:30</div> |
|
7 </div> |
|
8 |
|
9 <div class="col col-6 content"> |
|
10 {{ note | markdownify }} |
|
11 </div> |
|
12 |
|
13 <div class="margin col col-3 small text-muted"> |
|
14 {{ note | truncate: "100" | markdownify }} |
|
15 </div> |
|
16 </div> |
3 {% endfor %} |
17 {% endfor %} |