Fix tag urls in breadcrumb

master
Nick Sergeant 2011-12-04 19:48:01 -05:00
parent cfe51ff6c9
commit 896946cc2a
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
{% block breadcrumb %}
<li><a href="/public/">public</a></li>
{% if tag %}
<li>/ <a href="/public/{{ tag }}/">{{ tag }}</a></li>
<li>/ <a href="/public/tag/{{ tag }}/">{{ tag }}</a></li>
{% endif %}
{% endblock %}

View File

@ -7,7 +7,7 @@
{% block breadcrumb %}
<li><a href="/{{ user.username }}/">{{ user.username }}</a></li>
{% if tag %}
<li>/ <a href="/{{ user.username }}/{{ tag }}/">{{ tag }}</a></li>
<li>/ <a href="/{{ user.username }}/tag/{{ tag }}/">{{ tag }}</a></li>
{% endif %}
{% endblock %}