diff options
author | codecalm <codecalm@gmail.com> | 2020-03-25 21:58:08 +0100 |
---|---|---|
committer | codecalm <codecalm@gmail.com> | 2020-03-25 21:58:08 +0100 |
commit | b37611bffe1dbb6107a0efd210e125c9a141856d (patch) | |
tree | 6e9287bb60324a1f1df13a54a30f8875028b455f /src/editor.html | |
parent | plane fix, plane-arrival, plane-departure (diff) | |
download | tabler-icons-b37611bffe1dbb6107a0efd210e125c9a141856d.tar.xz |
bold, italic, underline icons #11
Diffstat (limited to 'src/editor.html')
-rw-r--r-- | src/editor.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/editor.html b/src/editor.html index 3a928f28..688cf5e3 100644 --- a/src/editor.html +++ b/src/editor.html @@ -1,6 +1,10 @@ --- layout: default --- + +{% assign toolbar = 'bold,italic,underline|align-left,align-center,align-right,align-justified|list,list-check' | split: '|' %} + + <div class="container"> <div class="box"> @@ -69,6 +73,19 @@ layout: default </div> </div> + <div class="mb"> + <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="{{ name }}">{% include icon.html name=button %}</div> + {% endfor %} + </div> + {% endfor %} + </div> + </div> + <h2 class="icon-subtitle">{{ site.icons.size }} icons</h2> <div class="mb"> |