prettier blockquotes
[Ultimately_Untrue_Thought.git] / theme / templates / tags.html
1 {% extends "base.html" %}
2 {% block title %}{{ SITENAME }}{% endblock %}
3
4 {% block content %}
5
6 <h1>Tags</h1>
7         
8 <ul class="tagcloud">
9   {% for tag in tag_cloud %}
10     <li class="tag-{{ tag.1 }}"><a href="{{ SITEURL }}/{{ tag.0.url }}">{{ tag.0 }}</a></li>
11   {% endfor %}
12 </ul>
13
14 {% endblock %}