aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/templates/tags.html
blob: d738d2d1635bb87ad1ad811193af81c53d91fe45 (plain)
1
2
3
4
5
6
7
8
9
{% 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 %}