diff options
author | codecalm <codecalm@gmail.com> | 2020-02-27 16:44:56 +0100 |
---|---|---|
committer | codecalm <codecalm@gmail.com> | 2020-02-27 16:44:56 +0100 |
commit | 779f14f8b56f25841bdc79a809987d27a1f6dde4 (patch) | |
tree | 27a7d1efef52594eabd2223de454dfd9345b7789 /index.html | |
parent | first commit (diff) | |
download | tabler-icons-779f14f8b56f25841bdc79a809987d27a1f6dde4.tar.xz |
first init
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -1,3 +1,5 @@ +--- +--- <!doctype html> <html lang="en"> <head> @@ -5,9 +7,17 @@ <meta name="viewport" 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"> <title>Tabler Icons</title> </head> <body> - +<div class="container"> + <ul> + {% for icon in site.icons %} + <li>{{ icon }}</li> + {% endfor %} + </ul> +</div> </body> </html> |