aboutsummaryrefslogtreecommitdiff
path: root/src/tags.html
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2021-01-20 22:18:49 +0100
committercodecalm <codecalm@gmail.com>2021-01-20 22:18:49 +0100
commitc8da3525fac1d02e48b957a0ed9676b28e38e394 (patch)
treed29c214daad37893134cd10637cc3536f37fcd2d /src/tags.html
parentUpdate README.md (diff)
parentMerge pull request #104 from tabler/dev-iconfont-generation (diff)
downloadtabler-icons-c8da3525fac1d02e48b957a0ed9676b28e38e394.tar.xz
Merge branch 'dev' of https://github.com/tabler/tabler-icons
 Conflicts:  iconfont/fonts/tabler-icons.eot  iconfont/fonts/tabler-icons.ttf  iconfont/fonts/tabler-icons.woff  iconfont/fonts/tabler-icons.woff2
Diffstat (limited to 'src/tags.html')
-rw-r--r--src/tags.html9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/tags.html b/src/tags.html
index e850d310..8148f92e 100644
--- a/src/tags.html
+++ b/src/tags.html
@@ -4,15 +4,22 @@ layout: default
<div class="container">
<div class="box">
- <table class="table">
+ {% assign i = 0 %}
+ <table class="table mb">
{% for icon in site.icons %}
<tr>
<td class="td-1">{% include 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>