aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/home.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-06-29 20:38:38 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-06-29 20:38:38 +0200
commitacefecc0e78ff5469442054f62f9c5926b8f72a6 (patch)
tree9cea9c1cd802602b8d58a5c4c11f9a055e891772 /pyaggr3g470r/templates/home.html
parentRemoved a bad character. (diff)
downloadnewspipe-acefecc0e78ff5469442054f62f9c5926b8f72a6.tar.gz
newspipe-acefecc0e78ff5469442054f62f9c5926b8f72a6.tar.bz2
newspipe-acefecc0e78ff5469442054f62f9c5926b8f72a6.zip
Fixed some problems with href tags.
Diffstat (limited to 'pyaggr3g470r/templates/home.html')
-rw-r--r--pyaggr3g470r/templates/home.html12
1 files changed, 4 insertions, 8 deletions
diff --git a/pyaggr3g470r/templates/home.html b/pyaggr3g470r/templates/home.html
index 40ed1168..14599771 100644
--- a/pyaggr3g470r/templates/home.html
+++ b/pyaggr3g470r/templates/home.html
@@ -99,20 +99,16 @@
<td class="date">{{ article.date|datetime }}</a></td>
<td>
<a href="#"><i class="glyphicon glyphicon-remove delete" title="{{ _('Delete this article') }}"></i></a>
- <a href="#">
{% if article.like %}
- <i class="glyphicon glyphicon-star like" title="{{ _('One of your favorites') }}"></i>
+ <a href="#"><i class="glyphicon glyphicon-star like" title="{{ _('One of your favorites') }}"></i></a>
{% else %}
- <i class="glyphicon glyphicon-star-empty like" title="{{ _('Click if you like this article') }}"></i>
+ <a href="#"><i class="glyphicon glyphicon-star-empty like" title="{{ _('Click if you like this article') }}"></i></a>
{% endif %}
- </a>
- <a href="#">
{% if article.readed %}
- <i class="glyphicon glyphicon-unchecked readed" title="{{ _('Mark this article as unread') }}"></i>
+ <a href="#"><i class="glyphicon glyphicon-unchecked readed" title="{{ _('Mark this article as unread') }}"></i></a>
{% else %}
- <i class="glyphicon glyphicon-check readed" title="{{ _('Mark this article as read') }}"></i>
+ <a href="#"><i class="glyphicon glyphicon-check readed" title="{{ _('Mark this article as read') }}"></i></a>
{% endif %}
- </a>
</td>
</tr>
{% endfor %}
bgstack15