diff options
author | Daan Debie <debie.daan@gmail.com> | 2014-01-27 23:38:37 +0100 |
---|---|---|
committer | Daan Debie <debie.daan@gmail.com> | 2014-01-27 23:39:08 +0100 |
commit | fd1a4eaba46c1def74bd6905bce15c61bb326ed5 (patch) | |
tree | a768a44479fcec3e04307f4035b30a689ae6d826 /pelican-bootstrap3/templates/includes/article_info.html | |
parent | c35cbabcaf4807b9474203a2fbd809883b08ad50 (diff) | |
download | pelican-themes-fd1a4eaba46c1def74bd6905bce15c61bb326ed5.tar.gz |
Updated pelican-bootstrap to v1.2
Diffstat (limited to 'pelican-bootstrap3/templates/includes/article_info.html')
-rw-r--r-- | pelican-bootstrap3/templates/includes/article_info.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pelican-bootstrap3/templates/includes/article_info.html b/pelican-bootstrap3/templates/includes/article_info.html index 6610aa2..abbf807 100644 --- a/pelican-bootstrap3/templates/includes/article_info.html +++ b/pelican-bootstrap3/templates/includes/article_info.html @@ -1,12 +1,12 @@ <footer class="post-info"> <span class="label label-default">Date</span> <span class="published"> - <i class="icon-calendar"></i>{{ article.locale_date }} + <i class="fa fa-calendar"></i><time datetime="{{ article.date.isoformat() }}"> {{ article.locale_date }}</time> </span> {# Uncomment if you want the author shown #} {#{% if article.author %}#} {#<span class="label">By</span>#} - {#<a href="{{ SITEURL }}/{{ article.author.url }}"><i class="icon-user"></i>{{ article.author }}</a>#} + {#<a href="{{ SITEURL }}/{{ article.author.url }}"><i class="fa fa-user"></i> {{ article.author }}</a>#} {#{% endif %}#} {# Uncomment if you want to show Categories#} @@ -20,5 +20,6 @@ {% endif %} {% include 'includes/taglist.html' %} - {% include 'includes/translations.html' %} + {% import 'includes/translations.html' as translations with context %} + {{ translations.translations_for(article) }} </footer><!-- /.post-info --> |