# HG changeset patch # User David Douard # Date 1458345044 -3600 # Node ID 3c30fc0f8ce0e6bf00eb5ecc7559a9499554e6bc # Parent 376692051823e2f9489bcada2bda0ca4762288fe [theme] add '(last updated on xxx)' in article timestamps when available diff -r 376692051823 -r 3c30fc0f8ce0 theme/static/css/lamboz.css --- a/theme/static/css/lamboz.css Sat Mar 19 00:49:24 2016 +0100 +++ b/theme/static/css/lamboz.css Sat Mar 19 00:50:44 2016 +0100 @@ -93,6 +93,11 @@ margin-bottom: 0.5em; } +.read-more SPAN { + font-size: 80%; + font-style: italic; +} + ul.tag-list { list-style-type: none; margin:0px; diff -r 376692051823 -r 3c30fc0f8ce0 theme/templates/article.html --- a/theme/templates/article.html Sat Mar 19 00:49:24 2016 +0100 +++ b/theme/templates/article.html Sat Mar 19 00:50:44 2016 +0100 @@ -15,7 +15,7 @@ {% block content %}
-
Posted on {{ article.locale_date}}
+
Posted on {{ article.locale_date}}{% if article.locale_modified and article.locale_modified != article.locale_date %} (last updated on {{ article.locale_modified }}) {% endif %}