diff options
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 --> |