diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2013-05-08 10:54:59 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2013-05-08 15:47:02 +0200 |
commit | 22e881fa89e4b3b8f6207d2c2e8713c2ff919400 (patch) | |
tree | aed2733a92661a803801ab8876558d794c62e515 /theme/templates/article.html | |
parent | faf19242226324b95ad96cb01d29131e7ba65e50 (diff) |
Added articlelogo on main page
Diffstat (limited to 'theme/templates/article.html')
-rwxr-xr-x | theme/templates/article.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/theme/templates/article.html b/theme/templates/article.html index b53962d..a23074c 100755 --- a/theme/templates/article.html +++ b/theme/templates/article.html @@ -6,6 +6,9 @@ <article class="post"> <h1 class="page_title"><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h1> {%include 'meta.html'%} + {% import 'translations.html' as translations with context %} + {{ translations.translations_for(article) }} + <section class="post_content"> {{ article.content }} @@ -14,6 +17,7 @@ </article> {% if article.related_posts and article.related_posts %} + <div class="clear" /> <h2>À lire aussi :</h2> |