diff -r bb011397a99c -r 9507107a1133 theme/templates/category.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/theme/templates/category.html Sat Mar 12 17:37:27 2016 +0100 @@ -0,0 +1,46 @@ +{% extends "base.html" %} +{% block pageheader %} +
+ +
+{% endblock %} + + +{% block content %} + +{% block content_title %} +{% endblock %} + + + +{% set cnt = 0 %} + + + +{% for article in articles_page.object_list %} +
+
{{ article.locale_date}}
+ +

{{ article.title }}

+

+ {{ article.summary }} +

+
+ +{% endfor %} +
+{% if articles_page.has_other_pages() %} +
+ {% include 'pagination.html' %} +
+{% endif %} + +{% endblock content %} + +