From f49b1351160e2a309f57bca1e429077b1949a8ec Mon Sep 17 00:00:00 2001 From: Sébastien Dailly Date: Wed, 8 May 2013 19:50:04 +0200 Subject: Use uniform template for index category and tag page --- theme/templates/tag.html | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) (limited to 'theme/templates/tag.html') diff --git a/theme/templates/tag.html b/theme/templates/tag.html index 059442a..101a22d 100755 --- a/theme/templates/tag.html +++ b/theme/templates/tag.html @@ -5,18 +5,13 @@

Articles avec le mot-clef « {{ tag }} »

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

{{ article.title }}

- + {% import 'abstract.html' as abstract with context %} + {{ abstract.abstract(article, "h2") }} -
- {{ article.summary }} -
- {% if not loop.last %} + {% if not loop.last %}
- {% endif %} -
-
+ {% endif %} + {% endfor %} {% endif %} {% include 'navigator.html' %} -- cgit v1.2.3