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

16 lines
414 B
HTML
Raw Normal View History

{% extends "snipts/list.html" %}
{% block breadcrumb %}
<li><a href="/public/">public</a></li>
{% if tag %}
2012-04-22 18:47:49 -07:00
<li><span class="prompt">/</span> <a href="/public/tag/{{ tag.slug }}/">{{ tag.name }}</a></li>
{% endif %}
2012-04-13 20:30:23 -07:00
<li class="rss">
<a href="{{ request.path }}?rss">RSS</a>
</li>
{% endblock %}
2012-07-08 09:25:15 -07:00
{% block aside-top %}
2011-10-12 13:34:01 -07:00
{% include "snipts/tags-public.html" %}
{% endblock %}