aboutsummaryrefslogtreecommitdiffstats
path: root/tuxlite_zf/templates/tags.html
blob: 9cba8671a116ba9328d66adf44059b8da1eecd0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html" %}
{% block content %}

<ul class="circle">
    {% for tag, articles in tags|sort %}
	<li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a></li>
	<ul class="square">
	{% for article in articles|sort %}
	<li><a href="{{ SITEURL }}/{{ article.url }}"><small>{{ article.title }}</small></li>
	{% endfor %}
	</ul>
    {% endfor %}
</ul>

{% endblock %}