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

13 lines
328 B
HTML

{% extends "snipts/list.html" %}
{% block breadcrumb %}
<li><a href="/{{ user.username }}/">{{ user.username }}</a></li>
{% if tag %}
<li>/ <a href="/{{ user.username }}/tag/{{ tag }}/">{{ tag }}</a></li>
{% endif %}
{% endblock %}
{% block tags %}
{% include "snipts/tags-user.html" %}
{% endblock %}