aboutsummaryrefslogtreecommitdiffstats
path: root/sleepmap-theme
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2015-08-03 19:41:06 +0200
committerDavid Runge <dave@sleepmap.de>2015-08-03 19:41:06 +0200
commit89b2e58a5b8f4145a292c0d672c034b409edadfa (patch)
tree661a6c05621f73e397ebaca8d7db85968f33d808 /sleepmap-theme
parent913134c195583d893ceb4d00ae7581d54fb28554 (diff)
downloadsleepmap-89b2e58a5b8f4145a292c0d672c034b409edadfa.tar.gz
sleepmap-89b2e58a5b8f4145a292c0d672c034b409edadfa.tar.bz2
sleepmap-89b2e58a5b8f4145a292c0d672c034b409edadfa.tar.xz
sleepmap-89b2e58a5b8f4145a292c0d672c034b409edadfa.zip
sleepmap-theme/templates/article_infos.html: Removing tags (now in article header). Adding date, author and category in one line below the article.
Diffstat (limited to 'sleepmap-theme')
-rw-r--r--sleepmap-theme/templates/article_infos.html9
1 files changed, 5 insertions, 4 deletions
diff --git a/sleepmap-theme/templates/article_infos.html b/sleepmap-theme/templates/article_infos.html
index a1993a0..4185232 100644
--- a/sleepmap-theme/templates/article_infos.html
+++ b/sleepmap-theme/templates/article_infos.html
@@ -1,14 +1,15 @@
<footer class="post-info">
+ <p>Published on </p>
<abbr class="published" title="{{ article.date.isoformat() }}">
{{ article.locale_date }}
</abbr>
{% if article.author %}
+ <p> by</p>
<address class="vcard author">
- By <a class="url fn" href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a>
+ <a class="url fn" href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a>
</address>
{% endif %}
-<p>In <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>. {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ article.slug }}.pdf">get the pdf</a>{% endif %}</p>
-{% include 'taglist.html' %}
-{% include 'translations.html' %}
+ <p>in the category</p> <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>
+ {% include 'translations.html' %}
</footer><!-- /.post-info -->