diff options
-rw-r--r-- | templates/article.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/article.html b/templates/article.html index 0ecb737..1089b78 100644 --- a/templates/article.html +++ b/templates/article.html @@ -31,18 +31,18 @@ {{ translations.translations_for(article) }} </header> <footer class="post-info"> - Publié le + Posted on <time class="published" datetime="{{ article.date }}"> {{ article.locale_date }} </time> {% if article.modified %} - et modifié le + and modified on <time class="modified" datetime="{{ article.modified.isoformat() }}"> {{ article.locale_modified }} </time> {% endif %} {% if article.category %} - dans la catégorie <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a> + in category <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a> {% endif %} {% if article.tags %} <div class="tags"> |