snipt/blogs/templates/blogs/themes/default/list.html

25 lines
645 B
HTML
Raw Normal View History

2012-06-01 08:38:55 -07:00
{% extends "blogs/themes/default/base.html" %}
2012-05-31 19:32:32 -07:00
2012-06-04 17:57:20 -07:00
{% load pagination_tags %}
2012-06-01 18:05:25 -07:00
{% block body-class %}{{ block.super }} blog-list{% endblock %}
2012-05-31 19:32:32 -07:00
{% block js %}
{{ block.super }}
window.detail = false;
{% endblock %}
{% block content %}
<section class="snipts" id="snipts">
2013-11-11 06:56:26 -08:00
{% autopaginate snipts 10 %}
2012-05-31 19:32:32 -07:00
{% for snipt in snipts %}
2012-06-01 08:38:55 -07:00
{% include "blogs/themes/default/snipt-list.html" %}
2012-05-31 19:32:32 -07:00
{% empty %}
<div class="empty-snipts">
2012-06-01 16:55:49 -07:00
{{ blog_user.username }} has no public blog posts.
2012-05-31 19:32:32 -07:00
</div>
{% endfor %}
{% paginate %}
</section>
{% endblock %}