1
0
Fork 0
forked from github/pelican

Merge pull request #965 from cdhowie/master

Update tag cloud documentation
This commit is contained in:
Justin Mayer 2013-07-15 13:59:23 -07:00
commit b282b7c72d

View file

@ -497,7 +497,7 @@ The default theme does not support tag clouds, but it is pretty easy to add::
<ul>
{% for tag in tag_cloud %}
<li class="tag-{{ tag.1 }}"><a href="/tag/{{ tag.0|string|replace(" ", "-" ) }}.html">{{ tag.0 }}</a></li>
<li class="tag-{{ tag.1 }}"><a href="{{ tag.0.url }}">{{ tag.0 }}</a></li>
{% endfor %}
</ul>