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

27 lines
1.1 KiB
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 %}
2013-02-03 11:31:44 -08:00
{% if not request.user.profile.is_pro %}
<div class="sifter">
<h3>Building things is hard.</h3>
<p>
Issue tracking shouldn't be. <a href="https://sifterapp.com/from/snipt" title="Sifter: Simple issue tracking for big projects and small teams.">Sifter</a> makes it simple.
</p>
<a class="sifter-logo" href="https://sifterapp.com/from/snipt" title="Sifter: Simple issue tracking for big projects and small teams.">
<img src="{{ STATIC_URL }}img/sifter-black-white.png" alt="Sifter: Simple issue tracking for big projects and small teams." />
2013-02-03 11:31:44 -08:00
</a>
</div>
{% endif %}
2011-10-12 13:34:01 -07:00
{% include "snipts/tags-public.html" %}
{% endblock %}