aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-06 22:24:58 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-06 22:24:58 +0100
commitfd53143046e0054eab675838b01974493c3c71eb (patch)
tree86dd6665cc324c27c5e94ae4577b2e47b9851c65
parentFixed icon in the feed template. (diff)
downloadnewspipe-fd53143046e0054eab675838b01974493c3c71eb.tar.gz
newspipe-fd53143046e0054eab675838b01974493c3c71eb.tar.bz2
newspipe-fd53143046e0054eab675838b01974493c3c71eb.zip
Fixe icon in the article template.
-rw-r--r--newspipe/web/templates/article.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/newspipe/web/templates/article.html b/newspipe/web/templates/article.html
index a95d86d9..884bf677 100644
--- a/newspipe/web/templates/article.html
+++ b/newspipe/web/templates/article.html
@@ -4,16 +4,16 @@
<div class="well">
<h2><a href="{{ article.link }}" target="_blank">{{ article.title|safe }}</a></h2>
<h3>{{ _('from') }} <a href="/feed/{{ article.source.id }}">{{ article.source.title }}</a></h3>
- <a href="{{ url_for("article.delete", article_id=article.id) }}"><i class="glyphicon glyphicon-remove" title="{{ _('Delete this article') }}"></i></a>
+ <a href="{{ url_for("article.delete", article_id=article.id) }}"><i class="fa fa-times" aria-hidden="true" title="{{ _('Delete this article') }}"></i></a>
{% if article.like %}
- <a href="#"><i class="glyphicon glyphicon-star like" title="{{ _('One of your favorites') }}"></i></a>
+ <a href="#"><i class="fa fa-star" aria-hidden="true" title="{{ _('One of your favorites') }}"></i></a>
{% else %}
- <a href="#"><i class="glyphicon glyphicon-star-empty like" title="{{ _('Click if you like this article') }}"></i></a>
+ <a href="#"><i class="fa fa-star-o" aria-hidden="true" title="{{ _('Click if you like this article') }}"></i></a>
{% endif %}
{% if article.readed %}
- <a href="#"><i class="glyphicon glyphicon-unchecked readed" title="{{ _('Mark this article as unread') }}"></i></a>
+ <a href="#"><i class="fa fa-check-square readed" title="{{ _('Mark this article as unread') }}"></i></a>
{% else %}
- <a href="#"><i class="glyphicon glyphicon-check readed" title="{{ _('Mark this article as read') }}"></i></a>
+ <a href="#"><i class="fa fa-check-square-o readed" aria-hidden="true" aria-hidden="true" title="{{ _('Mark this article as read') }}"></i></a>
{% endif %}
<h6>{{ article.date | datetime }}</h6>
</div>
bgstack15