From 4c3e16c0dc78ab7cbd60c270b324ccadfccd7b6a Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Sat, 14 Mar 2020 23:48:52 +0100 Subject: Date of publication is not displayed on small devices. --- newspipe/templates/home.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/newspipe/templates/home.html b/newspipe/templates/home.html index 8264807c..03d71cfb 100644 --- a/newspipe/templates/home.html +++ b/newspipe/templates/home.html @@ -105,7 +105,7 @@ {{ _('Feed') }} {% endif %} {{ _('Article') }} - {{ _('Date') }} + {{ _('Date') }} @@ -131,7 +131,7 @@ {{ article.title | safe }} - {{ article.date | datetime(format='short') }} + {{ article.date | datetime(format='short') }} {% endfor %} -- cgit