diff options
-rw-r--r-- | gum/templates/sidebar.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gum/templates/sidebar.html b/gum/templates/sidebar.html index 43ed62a..b0cd52b 100644 --- a/gum/templates/sidebar.html +++ b/gum/templates/sidebar.html @@ -33,7 +33,7 @@ {% 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 %} @@ -50,4 +50,4 @@ </nav> {% endif %} -</div>
\ No newline at end of file +</div> |