aboutsummaryrefslogtreecommitdiff
path: root/src/tags.html
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2020-10-14 16:07:07 +0200
committercodecalm <codecalm@gmail.com>2020-10-14 16:07:07 +0200
commit7d88efd4db1f25daeb30fcdb1c42168ba456292e (patch)
tree33c4a50bd107b23aa308d07ebd95dafb41118f7f /src/tags.html
parenttournament fix (diff)
downloadtabler-icons-7d88efd4db1f25daeb30fcdb1c42168ba456292e.tar.xz
66 new icons: `ball-football-off`, `box-multiple-0`, `box-multiple-1`, `box-multiple-2`, `box-multiple-3`, `box-multiple-4`, `box-multiple-5`, `box-multiple-6`, `box-multiple-7`, `box-multiple-8`, `box-multiple-9`, `box-multiple`, `calendar-off`, `cash-banknote-off`, `circle-0`, `circle-1`, `circle-2`, `circle-3`, `circle-4`, `circle-5`, `circle-6`, `circle-7`, `circle-8`, `circle-9`, `crown-off`, `database-off`, `device-computer-camera-off`, `device-desktop-off`, `drone-off`, `files-off`, `glass-off`, `keyboard-off`, `math-function`, `number-0`, `number-1`, `number-2`, `number-3`, `number-4`, `number-5`, `number-6`, `number-7`, `number-8`, `number-9`, `number-small-0`, `number-small-1`, `number-small-2`, `number-small-3`, `number-small-4`, `number-small-5`, `number-small-6`, `number-small-7`, `number-small-8`, `number-small-9`, `receipt-off`, `square-0`, `square-1`, `square-2`, `square-3`, `square-4`, `square-5`, `square-6`, `square-7`, `square-8`, `square-9`, `table-off`, `truck-off`
Fixed icons: `ball-football`, `glass-full`, `glass`, `math-symbols`, `mug`, `playlist`, `relation-many-to-many`, `relation-one-to-many`, `relation-one-to-one`, `satellite`, `table`, `window`
Diffstat (limited to 'src/tags.html')
-rw-r--r--src/tags.html8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/tags.html b/src/tags.html
index e850d310..449ed876 100644
--- a/src/tags.html
+++ b/src/tags.html
@@ -4,7 +4,8 @@ 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>
@@ -12,7 +13,12 @@ layout: default
<td>{{ icon.tags | join: ', ' }}</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>