aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2020-02-27 16:44:56 +0100
committercodecalm <codecalm@gmail.com>2020-02-27 16:44:56 +0100
commit779f14f8b56f25841bdc79a809987d27a1f6dde4 (patch)
tree27a7d1efef52594eabd2223de454dfd9345b7789 /index.html
parentfirst commit (diff)
downloadtabler-icons-779f14f8b56f25841bdc79a809987d27a1f6dde4.tar.xz
first init
Diffstat (limited to 'index.html')
-rw-r--r--index.html12
1 files changed, 11 insertions, 1 deletions
diff --git a/index.html b/index.html
index 83a8ea3..a9983a9 100644
--- a/index.html
+++ b/index.html
@@ -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>