Skip to content

Commit

Permalink
Gum: Fix tag URLs not being slugified (and therefore broken)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdhowie committed Jul 15, 2013
1 parent 68d249c commit 3a2d7ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gum/templates/sidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ <h4>Tags</h4>
{% if tags %}
<ul>
{% for tag in tag_cloud %}
<li class="tag-{{ tag.1 }}"><a href="{{ SITEURL }}/tag/{{ tag.0|string|replace(" ", "-" )|lower }}.html">{{ tag.0 }}</a></li>
<li class="tag-{{ tag.1 }}"><a href="{{ SITEURL }}/{{ tag.0.url }}">{{ tag.0 }}</a></li>
{% endfor %}
</ul>
{% endif %}
Expand All @@ -50,4 +50,4 @@ <h4>Social</h4>
</nav>
{% endif %}

</div>
</div>

0 comments on commit 3a2d7ad

Please sign in to comment.