|
115
|
1 |
<div class="row"> |
|
|
2 |
<div class="col offset-md-2 col-10"><h3>Lorem Ipsum Dolor</h3></div> |
|
|
3 |
</div> |
|
|
4 |
|
|
|
5 |
<div class="row"> |
|
|
6 |
<div class="col offset-md-2 col-10"> |
|
|
7 |
<p class="lead">{{ site.data.bacon[0] | markdownify }}</p> |
|
|
8 |
<hr> |
|
|
9 |
</div> |
|
|
10 |
</div> |
|
|
11 |
|
|
|
12 |
<div class="row mb-2"> |
|
|
13 |
<div class="col offset-md-2 col-10"><small class="text-muted"><strong>23 juin 2017</strong></small></div> |
|
|
14 |
</div> |
|
|
15 |
|
|
|
16 |
{% for note in site.data.bacon %} |
|
|
17 |
<div class="row note mb-2"> |
|
|
18 |
<div class="col col-2 d-flex flex-column justify-content-between small text-muted text-right metadata"> |
|
|
19 |
<div>10:20</div> |
|
|
20 |
<div class="filler"></div> |
|
|
21 |
<div>10:30</div> |
|
|
22 |
</div> |
|
|
23 |
|
|
|
24 |
<div class="col col-10 content"> |
|
|
25 |
{{ note | markdownify }} |
|
|
26 |
|
|
|
27 |
</div> |
|
|
28 |
</div> |
|
|
29 |
|
|
|
30 |
|
|
|
31 |
{% if include.margins=="bottom" %} |
|
|
32 |
<div class="row"> |
|
|
33 |
<div class="col col-10 offset-md-2 small text-muted"> |
|
|
34 |
{{ note | truncate: "200" | markdownify }} |
|
|
35 |
</div> |
|
|
36 |
{% endif %} |
|
|
37 |
</div> |
|
|
38 |
{% endfor %} |