From 9c87d63f70970aee390ad0c8b2623b27b4d94f15 Mon Sep 17 00:00:00 2001 From: maxlambertini Date: Mon, 26 Oct 2015 15:24:34 +0100 Subject: Add Bricks theme --- bricks/templates/category.html | 46 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 bricks/templates/category.html (limited to 'bricks/templates/category.html') diff --git a/bricks/templates/category.html b/bricks/templates/category.html new file mode 100644 index 0000000..e445eab --- /dev/null +++ b/bricks/templates/category.html @@ -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 %} + + -- cgit