summaryrefslogtreecommitdiffstats
path: root/kyrias_website/templates/tags.html
blob: a55352315ee0675adc3cd093322d017543c7fad8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends 'base.html' %}

{% block content %}
<section>
	<h1>Tags</h1>
	{% for tag in tags %}
		<div id="{{ tag }}">
			<h2>{{ tag }} <a class="permalink" href="#{{ tag }}" title="Link to this tag">§</a></h2>

			<ul id="tag-list">
			{% for entry in tags[tag] %}
				<li>{{ entry.meta.date }}<a href="{{ url_for('entry', name=entry.path) }}">{{ entry.title }}</a></li>
			{% endfor %}
			</ul>
		</div>
	{% endfor %}
</section>
{% endblock %}