aboutsummaryrefslogtreecommitdiff
path: root/tags.html
blob: 78928003975d46f8866973b1710e6aec35d2a0bd (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
26
27
28
---
title: Tags
layout: default
id: tags
toc: false
post: false
---

<ul>
	{% assign tags = site.data.tags %}
	{% for tag in tags %}
	<li class="stub">
		<details>
			<summary>
			{{ tag[0] }} ({{ tag[1] }})
			</summary>
			<ul>
			{% assign posts = site.items | where_exp: "post", "post.tags contains tag[0]" %}
			{% for post in posts %}
			<li><a href="{{ post.url }}">{{ post.title }}</a></li>
			{% endfor %}
			</ul>
		</details>
	</li>
	{% endfor %}
</ul>