diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-06-25 10:59:33 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-06-25 10:59:33 +0200 |
commit | 0b76fb0d12ab08e6e8cead42ca7c86d33b0219b1 (patch) | |
tree | 1284d02ee2ce93fc110e61397c42f238c91891ad | |
parent | chg: [ui] improved article_pub template. (diff) | |
download | newspipe-0b76fb0d12ab08e6e8cead42ca7c86d33b0219b1.tar.gz newspipe-0b76fb0d12ab08e6e8cead42ca7c86d33b0219b1.tar.bz2 newspipe-0b76fb0d12ab08e6e8cead42ca7c86d33b0219b1.zip |
swap fa-heart and fa-square icons.
-rw-r--r-- | newspipe/templates/home.html | 10 |
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"> |