From 66a5a0cdccd464930a232c87f91e1b0805f255a5 Mon Sep 17 00:00:00 2001 From: Chimrod Date: Tue, 16 Apr 2013 21:27:30 +0200 Subject: initial commit --- theme/templates/category.html | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 theme/templates/category.html (limited to 'theme/templates/category.html') diff --git a/theme/templates/category.html b/theme/templates/category.html new file mode 100755 index 0000000..f476d93 --- /dev/null +++ b/theme/templates/category.html @@ -0,0 +1,31 @@ +{% extends "base.html" %} +{% block title %}{{ SITENAME }} - {{ category}}{% endblock %} + +{% block content %} +

Articles dans la catégorie «{{ category }}»

+ {% if articles %} + {% for article in (articles_page.object_list if articles_page else articles) %} +
+

{{ article.title }}

+ + +
+ {{ article.summary }} + {% if not loop.last %} +
+ {% endif %} +
+
+ {% endfor %} + {% endif %} + {% include 'navigator.html' %} + + {% if CATEGORY_FEED_RSS %} + + {% endif %} + + {% if CATEGORY_FEED_ATOM %} + + {% endif %} + +{% endblock %} -- cgit v1.2.3