aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-11 09:35:20 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-11 09:35:20 +0100
commit7013edd8a4607a2a2b5bc8a9e819d79750904aff (patch)
treebe681cc35e18fb25008bd717eb5f84b1e91e1551
parentUses Bootstrap4 for the pagination component generated by Flask-Pagination. (diff)
downloadnewspipe-7013edd8a4607a2a2b5bc8a9e819d79750904aff.tar.gz
newspipe-7013edd8a4607a2a2b5bc8a9e819d79750904aff.tar.bz2
newspipe-7013edd8a4607a2a2b5bc8a9e819d79750904aff.zip
Fixed CSS menu class in article template.
-rw-r--r--newspipe/templates/article.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/newspipe/templates/article.html b/newspipe/templates/article.html
index 884bf677..c6ebb87a 100644
--- a/newspipe/templates/article.html
+++ b/newspipe/templates/article.html
@@ -4,14 +4,14 @@
<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="fa fa-times" aria-hidden="true" title="{{ _('Delete this article') }}"></i></a>
+ <a href="{{ url_for("article.delete", article_id=article.id) }}"><i class="fa fa-times delete" aria-hidden="true" title="{{ _('Delete this article') }}"></i></a>
{% if article.like %}
- <a href="#"><i class="fa fa-star" aria-hidden="true" title="{{ _('One of your favorites') }}"></i></a>
+ <a href="#"><i class="fa fa-star like" aria-hidden="true" title="{{ _('One of your favorites') }}"></i></a>
{% else %}
- <a href="#"><i class="fa fa-star-o" aria-hidden="true" title="{{ _('Click if you like this article') }}"></i></a>
+ <a href="#"><i class="fa fa-star-o like" aria-hidden="true" title="{{ _('Click if you like this article') }}"></i></a>
{% endif %}
{% if article.readed %}
- <a href="#"><i class="fa fa-check-square readed" title="{{ _('Mark this article as unread') }}"></i></a>
+ <a href="#"><i class="fa fa-square-o readed" title="{{ _('Mark this article as unread') }}"></i></a>
{% else %}
<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 %}
bgstack15