deleted ul element from tag cloud

This commit is contained in:
daniel goldsmith 2013-08-01 11:34:44 +01:00
commit 20767ac737

View file

@ -495,11 +495,11 @@ Setting name (default value) What does it do?
The default theme does not include a tag cloud, but it is pretty easy to add::
<ul>
<p>
{% for tag in tag_cloud %}
<span class="tag-{{ tag.1 }}"><a href="{{ SITEURL }}/{{ tag.0.url }}">{{ tag.0 }}</a>&nbsp;</span>
{% endfor %}
</ul>
</p>
You should then also define a CSS style with the appropriate classes (tag-0 to tag-N, where
N matches `TAG_CLOUD_STEPS` -1), tag-0 being the largest.