diff options
author | David Runge <dave@sleepmap.de> | 2015-08-03 19:38:20 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2015-08-03 19:38:20 +0200 |
commit | 913134c195583d893ceb4d00ae7581d54fb28554 (patch) | |
tree | 24acbfcd4fb63518bb70769e11804462729fe5d3 /sleepmap-theme | |
parent | 2393d096f82ec88cefceb653b374d79ccf08c966 (diff) | |
download | sleepmap-913134c195583d893ceb4d00ae7581d54fb28554.tar.gz sleepmap-913134c195583d893ceb4d00ae7581d54fb28554.tar.bz2 sleepmap-913134c195583d893ceb4d00ae7581d54fb28554.tar.xz sleepmap-913134c195583d893ceb4d00ae7581d54fb28554.zip |
sleepmap-theme/templates/article.html: Moving include of post-info to correct position (outside of entry-content div). Adding hentry class to article to streamline the design further.
Diffstat (limited to 'sleepmap-theme')
-rw-r--r-- | sleepmap-theme/templates/article.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sleepmap-theme/templates/article.html b/sleepmap-theme/templates/article.html index 1d869c0..775e206 100644 --- a/sleepmap-theme/templates/article.html +++ b/sleepmap-theme/templates/article.html @@ -2,14 +2,14 @@ {% block title %}{{ article.title|striptags }}{% endblock %} {% block content %} <section id="content" class="body"> -<article> +<article class="hentry"> <header> <h1 class="entry-title"><a href="{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h1> {% include 'twitter.html' %} </header> <div class="entry-content"> - {% include 'article_infos.html' %}<!-- /.post-info --> {{ article.content }} </div><!-- /.entry-content --> + {% include 'article_infos.html' %}<!-- /.post-info --> {% if DISQUS_SITENAME %} <div class="comments"> <h2>Comments !</h2> |