design/_includes/notes.list.html
author Alexandre Segura <mex.zktk@gmail.com>
Thu, 08 Jun 2017 11:13:41 +0200
changeset 21 284e866f55c7
parent 20 a8300ef1876e
child 22 92283f86282d
permissions -rw-r--r--
First version of categories tooltip. - Use react-portal to display hovering menu. - Add custom Mark to store category data.

<div class="card">
	<div class="card-header">
		session
	</div>
  <ul class="list-group list-group-flush">
		{% for note in site.data.bacon %}
			<li class="list-group-item small pb-1 pt-1">
				<span class="text-muted mr-1">10:09 → 10:12</span>
				{{ note | split: "" | size }} mots
			</li>
		{% endfor %}
	</ul>
</div>