diff options
author | Daan Debie <d.debie@thenewmotion.com> | 2015-02-21 23:16:27 +0100 |
---|---|---|
committer | Daan Debie <d.debie@thenewmotion.com> | 2015-02-21 23:16:27 +0100 |
commit | 524cfb091d7d3993f81091f0cba9e194951a17a6 (patch) | |
tree | 54c01c855e9994fbbfcf40b34cfb2552a020ae52 /pelican-bootstrap3/templates/includes/article_info.html | |
parent | 6ce5bf4fae4d65ad9696d5d8f98ec93c4a1f3021 (diff) | |
download | pelican-themes-524cfb091d7d3993f81091f0cba9e194951a17a6.tar.gz |
Updated pelican-bootstrap3 to latest version
Diffstat (limited to 'pelican-bootstrap3/templates/includes/article_info.html')
-rw-r--r-- | pelican-bootstrap3/templates/includes/article_info.html | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/pelican-bootstrap3/templates/includes/article_info.html b/pelican-bootstrap3/templates/includes/article_info.html index 787c360..ee107c9 100644 --- a/pelican-bootstrap3/templates/includes/article_info.html +++ b/pelican-bootstrap3/templates/includes/article_info.html @@ -3,15 +3,14 @@ <span class="published"> <i class="fa fa-calendar"></i><time datetime="{{ article.date.isoformat() }}"> {{ article.locale_date }}</time> </span> - - {% if SHOW_SERIES %} - {% if article.series %} - <span class="label label-default">Series</span> - Part {{ article.series.index}} of {{ article.series.name }} + {% if SHOW_DATE_MODIFIED %} + {% if article.modified %} + <span class="label label-default">Modified</span> + <span class="modified"> + <i class="fa fa-calendar"></i><time datetime="{{ article.modified.isoformat() }}"> {{ article.locale_modified }}</time> + </span> {% endif %} {% endif %} - - {% if SHOW_ARTICLE_AUTHOR %} {% if article.author %} <span class="label label-default">By</span> |