aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2020-03-10 22:12:47 +0100
committercodecalm <codecalm@gmail.com>2020-03-10 22:12:47 +0100
commitfe151338aeedcf04cc2078653193903519f7b4ad (patch)
tree051e557be0474af0192e1990b3f352885545509b /index.html
parenticons sprite (diff)
downloadtabler-icons-fe151338aeedcf04cc2078653193903519f7b4ad.tar.xz
icons directory structure
Diffstat (limited to 'index.html')
-rw-r--r--index.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..98418eb
--- /dev/null
+++ b/index.html
@@ -0,0 +1,29 @@
+---
+layout: default
+---
+<div class="container">
+ <div class="box">
+
+ <div class="mb">
+ <div class="icons-list">
+ {% for icon in site.icons %}
+ {% assign name = icon.slug %}
+ <div class="icons-list-icon js-icon" title="{{ icon.slug }}" data-icon="{{ name }}">
+ {% include icon.html name=name %}
+ </div>
+ {% endfor %}
+ </div>
+ </div>
+
+ <div class="mb">
+ <div class="icons-list">
+ {% for icon in site.icons %}
+ {% assign name = icon.slug %}
+ <div class="icons-list-icon js-icon" title="{{ icon.slug }}" data-icon="{{ name }}">
+ {% include icon.html name=name stroke=1.25 %}
+ </div>
+ {% endfor %}
+ </div>
+ </div>
+ </div>
+</div>