diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2021-09-25 12:02:22 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2021-09-25 12:02:22 +0200 |
commit | ccf3e827ae31a308971b0f15862a2e22fbce4b75 (patch) | |
tree | 7bbf008ecccaf1ca1545769585fd437e05479f77 | |
parent | fixed navbar-toggler (diff) | |
download | newspipe-ccf3e827ae31a308971b0f15862a2e22fbce4b75.tar.gz newspipe-ccf3e827ae31a308971b0f15862a2e22fbce4b75.tar.bz2 newspipe-ccf3e827ae31a308971b0f15862a2e22fbce4b75.zip |
improved display of the list of news
-rw-r--r-- | newspipe/templates/home.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/newspipe/templates/home.html b/newspipe/templates/home.html index 46d96d0f..631b769c 100644 --- a/newspipe/templates/home.html +++ b/newspipe/templates/home.html @@ -159,18 +159,18 @@ <tbody> {% for article in articles %} <tr data-article="{{ article.id }}" data-bs-feed="{{ article.feed_id }}"> - <th scope="row"> + <td scope="row"> {% if article.readed %} - <a href="#"><i class="fa fa-square-o readed" aria-hidden="true" title="{{ _('Mark this article as unread') }}"></i></a> + <button type="button" class="btn btn-link btn-xs"><i class="fa fa-square-o readed" aria-hidden="true" title="{{ _('Mark this article as unread') }}"></i></button> {% else %} - <a href="#"><i class="fa fa-check-square-o readed" aria-hidden="true" title="{{ _('Mark this article as read') }}"></i></a> + <button type="button" class="btn btn-link btn-xs"><i class="fa fa-check-square-o readed" aria-hidden="true" title="{{ _('Mark this article as read') }}"></i></button> {% endif %} {% if article.like %} - <a href="#"><i class="fa fa-star like" aria-hidden="true" title="{{ _('One of your favorites') }}"></i></a> + <button type="button" class="btn btn-link btn-xs"><i class="fa fa-star like" aria-hidden="true" title="{{ _('One of your favorites') }}"></i></button> {% else %} - <a href="#"><i class="fa fa-star-o like" aria-hidden="true" title="{{ _('Click if you like this article') }}"></i></a> + <button type="button" class="btn btn-link btn-xs"><i class="fa fa-star-o like" aria-hidden="true" title="{{ _('Click if you like this article') }}"></i></button> {% endif %} - </th> + </td> {% if not feed_id %} <td class="d-none d-md-block"> <img src="{{ url_for('icon.icon', url=feeds[article.source.id].icon_url) }}" width="16px"> |