1
0
Fork 0
forked from github/pelican

Fix the tag cloud example

This commit is contained in:
Eric 2013-01-14 19:33:03 -06:00 committed by Alexis Métaireau
commit 7cafcf6c24

View file

@ -386,7 +386,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 }}/">{{ tag.0 }}</a></li>
<li class="tag-{{ tag.1 }}"><a href="/tag/{{ tag.0|string|replace(" ", "-" ) }}.html">{{ tag.0 }}</a></li>
{% endfor %}
</ul>