design/_includes/notes.html
author duong tam kien <tk@deveha.com>
Thu, 08 Jun 2017 14:46:34 +0200
changeset 23 4c3ae065f22c
parent 20 a8300ef1876e
child 27 6161392ca928
permissions -rw-r--r--
notes layout

{% 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 %}