diff options
author | FELD Boris <lothiraldan@gmail.com> | 2011-04-08 13:41:44 +0200 |
---|---|---|
committer | FELD Boris <lothiraldan@gmail.com> | 2011-04-08 13:41:44 +0200 |
commit | 3e04e093dd7bde61f27213045091463a0addc356 (patch) | |
tree | b2b51445fa600e7e657374172ccc4f4642ae6247 /notmyidea-cms/templates/article.html | |
parent | d5a2b51f9ad37708b1fdeaa9c2fa4b27ca0836d0 (diff) | |
download | pelican-themes-3e04e093dd7bde61f27213045091463a0addc356.tar.gz |
Add link to article translations in index and article template
Diffstat (limited to 'notmyidea-cms/templates/article.html')
-rw-r--r-- | notmyidea-cms/templates/article.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/notmyidea-cms/templates/article.html b/notmyidea-cms/templates/article.html index 8b5e5ba..aaadfcd 100644 --- a/notmyidea-cms/templates/article.html +++ b/notmyidea-cms/templates/article.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% block title %}{{ article.title }}{% endblock %} -{% block content %} -<section id="content" class="body"> +{% block content %} +<section id="content" class="body"> <article> <header> <h1 class="entry-title"><a href="{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title }}">{{ article.title @@ -16,8 +16,9 @@ By <a class="url fn" href="#">{{ article.author }}</a> </address> {% endif %} - <p>In <a href="{{ SITEURL }}/category/{{ article.category }}.html">{{ article.category }}</a>. + <p>In <a href="{{ SITEURL }}/category/{{ article.category }}.html">{{ article.category }}</a>. {% include 'taglist.html' %} + {% include 'translations.html' %} </footer><!-- /.post-info --> {{ article.content }} </div><!-- /.entry-content --> |