blob: e788ce5da536cea0392d6d3f755cd791def95a6d (
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
29
30
|
{% include "header.html" %}
<h1>
<a href=http://blaise.zone>blaise</a>-<a href="../">blog</a>/tags
</h1>
<hr>
{% for tag in tags %}
<h1 id={{ tag }}><a href="#{{ tag }}">{{ tag }}</a></h1>
<p>
{% for post in posts %}
{% if tag in post.tags %}
{{ post.date }}
<a href=./{{ post.path }}>{{ post.title }}</a>
{% for tag_ in post.tags %}
{% if tag_ != tag %}
<a href="./tags/#{{ tag_ }}" style="color:#b294bb;font-style:italic;">#{{ tag_ }}</a>
{% endif %}
{% endfor %}
<br>
{% endif %}
{% endfor %}
</p>
{% endfor %}
{% include "footer.html" %}
|