aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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