From e18ab5765c5180eac57f5d4f2a26f0ee0033a851 Mon Sep 17 00:00:00 2001 From: "mb@mb" Date: Tue, 20 Mar 2018 22:47:12 +0100 Subject: [PATCH 1/2] fontsize of articles in index back to 100% --- themes/varia/static/css/main.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/varia/static/css/main.css b/themes/varia/static/css/main.css index cb802df..ed3daaf 100644 --- a/themes/varia/static/css/main.css +++ b/themes/varia/static/css/main.css @@ -233,7 +233,7 @@ header { } .article.hentry{ width:calc(400px + 2em); - font-size: 125%; + /*font-size: 125%;*/ } .hentry{ display: inline-block; From db3d737faf49c405b2a5654a5c8401c2486071e5 Mon Sep 17 00:00:00 2001 From: "mb@mb" Date: Tue, 20 Mar 2018 22:52:36 +0100 Subject: [PATCH 2/2] setting published date to a strtime format --- themes/varia/templates/article.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/varia/templates/article.html b/themes/varia/templates/article.html index 15791f0..ab5079c 100644 --- a/themes/varia/templates/article.html +++ b/themes/varia/templates/article.html @@ -40,7 +40,7 @@ {% if article.event_start %}
{{ article.event_start }}
{% else %} -
Published: {{ article.date }}
+
Published: {{ article.date | strftime('%d %B %Y') }}
{% endif %}