From 171765dbdebdda8206081ee2e67302a179b4e998 Mon Sep 17 00:00:00 2001 From: codecalm Date: Tue, 7 Apr 2020 18:32:41 +0200 Subject: new icons, rotate, checks --- src/_includes/toolbar.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/_includes/toolbar.html (limited to 'src/_includes/toolbar.html') diff --git a/src/_includes/toolbar.html b/src/_includes/toolbar.html new file mode 100644 index 0000000..afca900 --- /dev/null +++ b/src/_includes/toolbar.html @@ -0,0 +1,12 @@ +{% assign toolbar = include.toolbar | split: '|' %} + +
+ {% for group in toolbar %} + {% assign buttons = group | split: ',' %} +
+ {% for button in buttons %} +
{% include icon.html name=button %}
+ {% endfor %} +
+ {% endfor %} +
-- cgit v1.2.1