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

18 lines
377 B
HTML
Raw Normal View History

2011-10-12 13:34:01 -07:00
{% extends "base.html" %}
{% load pagination_tags %}
{% block tags %}
{% include "snipts/tags-public.html" %}
{% endblock %}
{% block content %}
<section class="snipts">
{% autopaginate snipts 20 %}
{% for snipt in snipts %}
{% include "snipts/snipt-list.html" %}
{% endfor %}
{% paginate %}
</section>
{% endblock %}