snipt/snipts/templates/snipts/list-user.html

13 lines
338 B
HTML
Raw Normal View History

{% extends "snipts/list.html" %}
{% block breadcrumb %}
<li><a href="/{{ user.username }}/">{{ user.username }}</a></li>
{% if tag %}
2012-03-10 18:52:46 -08:00
<li>/ <a href="/{{ user.username }}/tag/{{ tag.slug }}/">{{ tag.name }}</a></li>
{% endif %}
{% endblock %}
2011-10-12 13:34:01 -07:00
{% block tags %}
{% include "snipts/tags-user.html" %}
{% endblock %}