diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-03-14 23:48:52 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-03-14 23:48:52 +0100 |
commit | 4c3e16c0dc78ab7cbd60c270b324ccadfccd7b6a (patch) | |
tree | 3740322e44c7fe970f04ed5ffd2f19e068020b85 | |
parent | fixed wrong import (diff) | |
download | newspipe-4c3e16c0dc78ab7cbd60c270b324ccadfccd7b6a.tar.gz newspipe-4c3e16c0dc78ab7cbd60c270b324ccadfccd7b6a.tar.bz2 newspipe-4c3e16c0dc78ab7cbd60c270b324ccadfccd7b6a.zip |
Date of publication is not displayed on small devices.
-rw-r--r-- | newspipe/templates/home.html | 4 |
1 files 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 @@ <th>{{ _('Feed') }}</th> {% endif %} <th>{{ _('Article') }}</th> - <th>{{ _('Date') }}</th> + <th class="d-none d-lg-block">{{ _('Date') }}</th> </tr> </thead> <tbody> @@ -131,7 +131,7 @@ <td {%if filter_ == 'all' and article.readed == False %}style='font-weight:bold'{% endif %}> <a href="/article/{{ article.id }}">{{ article.title | safe }}</a> </td> - <td class="date">{{ article.date | datetime(format='short') }}</a></td> + <td class="date d-none d-lg-block">{{ article.date | datetime(format='short') }}</a></td> </tr> {% endfor %} </tbody> |