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

11 lines
323 B
HTML
Raw Normal View History

2012-03-04 12:58:00 -08:00
<section class="tags">
<h1>{{ user.username }}'s tags</h1>
<ul>
{% for t in tags %}
<li>
<a {% if tag == t.name %}class="active"{% endif %} href="/{{ user.username }}/tag/{{ t.slug }}/">{{ t.name }} ({{ t.count }})</a>
</li>
{% endfor %}
</ul>
</section>