aboutsummaryrefslogtreecommitdiff
path: root/src/_includes/toolbar.html
blob: e3f5283d2672fc74e2907b52f19fcae2f5bc1080 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% assign toolbar = include.toolbar | split: '|' %}

<div class="toolbar">
	{% for group in toolbar %}
	{% assign buttons = group | split: ',' %}
	<div class="buttons">
		{% for button in buttons %}
		<div class="button js-icon" data-icon="{{ button }}">{% include_cached icon.html name=button %}</div>
		{% endfor %}
	</div>
	{% endfor %}
</div>