aboutsummaryrefslogtreecommitdiffstats
path: root/Just-Read/templates/tags.html
blob: eed50d2ca1c1bf184ff088ba394f9b76e68696e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "base.html" %}
{% block title %}{{ SITENAME }}{% endblock %}

{% block content %}
<div role="main" class="content clearfix">
<div class="wrapper main">  	
	<h2>Tags</h2>
	
	<ul class="tagcloud">
    {% for tag in tag_cloud %}
        <li class="tag-{{ tag.1 }}"><a href="{{ SITEURL }}/tag/{{ tag.0 }}.html">{{ tag.0 }}</a></li>
    {% endfor %}
	</ul>

</div>
</div>
{% endblock %}