aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--newspipe/templates/home.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/newspipe/templates/home.html b/newspipe/templates/home.html
index 23d4ee37..8b5c3a38 100644
--- a/newspipe/templates/home.html
+++ b/newspipe/templates/home.html
@@ -160,16 +160,16 @@
{% for article in articles %}
<tr data-article="{{ article.id }}" data-feed="{{ article.feed_id }}">
<th scope="row">
- {% if article.like %}
- <a href="#"><i class="fa fa-heart like" aria-hidden="true" title="{{ _('One of your favorites') }}"></i></a>
- {% else %}
- <a href="#"><i class="fa fa-heart-o like" aria-hidden="true" title="{{ _('Click if you like this article') }}"></i></a>
- {% endif %}
{% if article.readed %}
<a href="#"><i class="fa fa-square-o readed" aria-hidden="true" title="{{ _('Mark this article as unread') }}"></i></a>
{% else %}
<a href="#"><i class="fa fa-check-square-o readed" aria-hidden="true" title="{{ _('Mark this article as read') }}"></i></a>
{% endif %}
+ {% if article.like %}
+ <a href="#"><i class="fa fa-heart like" aria-hidden="true" title="{{ _('One of your favorites') }}"></i></a>
+ {% else %}
+ <a href="#"><i class="fa fa-heart-o like" aria-hidden="true" title="{{ _('Click if you like this article') }}"></i></a>
+ {% endif %}
</th>
{% if not feed_id %}
<td class="d-none d-md-block">
bgstack15