diff options
author | codecalm <codecalm@gmail.com> | 2020-02-27 18:41:35 +0100 |
---|---|---|
committer | codecalm <codecalm@gmail.com> | 2020-02-27 18:41:35 +0100 |
commit | e6e7494bdcfbc48139dc38ea7219022e3d4ec6c1 (patch) | |
tree | 74c5b7b4c8e40b3bc4277f815dde8ccec660eb4f /index.html | |
parent | first init (diff) | |
download | tabler-icons-e6e7494bdcfbc48139dc38ea7219022e3d4ec6c1.tar.xz |
icon preview
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 22 |
1 files changed, 16 insertions, 6 deletions
@@ -8,16 +8,26 @@ content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> - <link rel="stylesheet" href="{{ site.baseurl }}/style.css"> + <link rel="stylesheet" href="{{ site.baseurl }}/assets/style.css"> <title>Tabler Icons</title> </head> <body> <div class="container"> - <ul> - {% for icon in site.icons %} - <li>{{ icon }}</li> - {% endfor %} - </ul> + <div class="box"> + <div class="icon-preview-wrap"> + <div class="icon-preview"> + {% include icon.html name="arrow-left" %} + </div> + </div> + <div class="icons-list"> + {% for icon in site.icons %} + <div class="icon"> + {% assign name = icon.slug %} + {% include icon.html name=name %} + </div> + {% endfor %} + </div> + </div> </div> </body> </html> |