Added tag cloud

This commit is contained in:
Natalia Ventre
2012-02-09 18:26:00 -02:00
parent 778b2a680b
commit 5016e34619

View File

@@ -1 +1,17 @@
<!--must list all the tags. Can be a tag cloud.-->
{% 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 %}