aboutsummaryrefslogtreecommitdiffstats
path: root/foundation-default-colours/templates/tags.html
blob: 7b517d30de3ba00efd03d7f2b8b3360f11f8dfeb (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends "base.html" %}

{% block title %}{{ SITENAME }} <small>[tags]</small>{% endblock %}

{% block content %}
	<ul>
	{% for tag, articles in tags %}
		<li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a></li>
	{% endfor %}
	</ul>
{% endblock %}