aboutsummaryrefslogtreecommitdiff
path: root/src/tags.html
blob: fbd5b54df3c573b51ebc028c415ffbcdc3febeb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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>