aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-06 22:52:36 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-06 22:52:36 +0100
commite42ffd1c5ec896594234ec550a66045553667c1f (patch)
treed32b84ccce1fd19c5d8cb2f9a5d2d69d688deb1e
parentFixe icons in the profile_public template. (diff)
downloadnewspipe-e42ffd1c5ec896594234ec550a66045553667c1f.tar.gz
newspipe-e42ffd1c5ec896594234ec550a66045553667c1f.tar.bz2
newspipe-e42ffd1c5ec896594234ec550a66045553667c1f.zip
Fixe icons in the history template.
-rw-r--r--newspipe/web/templates/history.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/newspipe/web/templates/history.html b/newspipe/web/templates/history.html
index d9ee9538..ba567106 100644
--- a/newspipe/web/templates/history.html
+++ b/newspipe/web/templates/history.html
@@ -3,10 +3,10 @@
<div class="container">
<h1>{{ _('History') }}</h1>
{% if month != None %}
- <h2><a href="{{ url_for("articles.history", year=year) }}"><span class="glyphicon glyphicon-chevron-left"></span> {{ year }}</a></h2>
+ <h2><a href="{{ url_for("articles.history", year=year) }}"><span class="fa fa-chevron-left" aria-hidden="true"></span> {{ year }}</a></h2>
<h3>{{ month | month_name }}</h3>
{% elif year != None %}
- <h2><a href="{{ url_for("articles.history") }}"><span class="glyphicon glyphicon-chevron-left"></span>&nbsp{{ _('all years') }}</a></h2>
+ <h2><a href="{{ url_for("articles.history") }}"><span class="fa fa-chevron-left" aria-hidden="true"></span>&nbsp{{ _('all years') }}</a></h2>
<h3>{{ year }}</h3>
{% endif %}
<ul class="list-group">
bgstack15