design/_includes/notes.html
author Alexandre Segura <mex.zktk@gmail.com>
Fri, 09 Jun 2017 15:24:53 +0200
changeset 26 930e486ad0a8
parent 23 4c3ae065f22c
child 27 6161392ca928
permissions -rw-r--r--
Store categories in note.

{% for note in site.data.bacon %}
<div class="row note mb-2">
	<div class="col col-3 d-flex flex-column justify-content-between small text-muted text-right metadata">
		<div>10:20</div>
		<div class="filler"></div>
		<div>10:30</div>
	</div>

	<div class="col col-6 content">
		{{ note | markdownify }}
	</div>

	<div class="margin col col-3 small text-muted">
		{{ note | truncate: "100" | markdownify }}
	</div>
</div>
{% endfor %}