aboutsummaryrefslogtreecommitdiff
path: root/src/tags.html
diff options
context:
space:
mode:
authorPaweł Kuna <1282324+codecalm@users.noreply.github.com>2022-06-26 11:33:34 +0200
committerGitHub <noreply@github.com>2022-06-26 11:33:34 +0200
commit9d2ec529cd741682a679d02bf27bcfd432a157be (patch)
treec1b42ef553484d0dc868f26ae8bd6fc49f344f72 /src/tags.html
parentmove `packages` to `packages-zip` directory (diff)
downloadtabler-icons-9d2ec529cd741682a679d02bf27bcfd432a157be.tar.xz
Rename _tags.html to tags.html
Diffstat (limited to 'src/tags.html')
-rw-r--r--src/tags.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/tags.html b/src/tags.html
new file mode 100644
index 00000000..fbd5b54d
--- /dev/null
+++ b/src/tags.html
@@ -0,0 +1,25 @@
+---
+layout: default
+---
+
+<div class="container">
+ <div class="box">
+ {% assign i = 0 %}
+ <table class="table mb">
+ {% for icon in site.icons %}
+ <tr>
+ <td class="td-1">{% include_cached icon.html name=icon.slug %}</td>
+ <th>{{ icon.slug }}</th>
+ <td>{{ icon.tags | join: ', ' }}</td>
+ <td>{{ icon.category }}</td>
+ <td>{{ icon.version }}</td>
+ </tr>
+ {% if icon.tags.size == 0 %}
+ {% assign i = i | plus: 1 %}
+ {% endif %}
+ {% endfor %}
+ </table>
+
+ <p>Untagged: {{ i }}</p>
+ </div>
+</div>