From 991a45e575e6c2ef369e810b5136bfc54a6e97b8 Mon Sep 17 00:00:00 2001 From: skami Date: Wed, 16 Feb 2011 16:15:00 +0100 Subject: Correction d'un bug de transcodage (utf8/ascii) --- lightweight/templates/archives.html | 2 +- lightweight/templates/meta.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'lightweight') diff --git a/lightweight/templates/archives.html b/lightweight/templates/archives.html index 4d6234f..8f8a8a5 100644 --- a/lightweight/templates/archives.html +++ b/lightweight/templates/archives.html @@ -12,7 +12,7 @@ {% for article in dates %} - {{ article.date.strftime(DEFAULT_DATE_FORMAT or '%a %d %B %Y') }} + {{ article.date.locale_date }} {{ article.title }} {% endfor %} diff --git a/lightweight/templates/meta.html b/lightweight/templates/meta.html index 14257bd..db29579 100644 --- a/lightweight/templates/meta.html +++ b/lightweight/templates/meta.html @@ -1,5 +1,5 @@
- Publié le + Publié le {% if article.author %} par {{ article.author }}{% endif %} dans «{{ article.category }}». {% if article.tags %}Mots-clés: {% for tag in article.tags %}{%if loop.index > 1%}, {%endif%}{{ tag }}{% endfor %}

{% endif %}
-- cgit v1.1