aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/article.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-06-29 00:05:41 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-06-29 00:05:41 +0200
commit1961a9776846d63fc5e71848552b338850225f35 (patch)
treec36f7acee972191531d0a95933c9831b17772f6d /pyaggr3g470r/templates/article.html
parentDelete article from the Whoosh indew when article has been deleted via the RE... (diff)
downloadnewspipe-1961a9776846d63fc5e71848552b338850225f35.tar.gz
newspipe-1961a9776846d63fc5e71848552b338850225f35.tar.bz2
newspipe-1961a9776846d63fc5e71848552b338850225f35.zip
A little bit more JavaScript.
Diffstat (limited to 'pyaggr3g470r/templates/article.html')
-rw-r--r--pyaggr3g470r/templates/article.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/pyaggr3g470r/templates/article.html b/pyaggr3g470r/templates/article.html
index 2dbdb8de..02f373b6 100644
--- a/pyaggr3g470r/templates/article.html
+++ b/pyaggr3g470r/templates/article.html
@@ -4,16 +4,16 @@
<script src="https://apis.google.com/js/plusone.js"></script>
{% endblock %}
{% block content %}
-<div class="container">
+<div class="container" data-article="{{ article.id }}">
<div class="jumbotron">
<h2><a href="{{ article.link }}">{{ article.title|safe }}</a></h2>
<h3>{{ _('from') }} <a href="/feed/{{ article.source.id }}">{{ article.source.title }}</a></h3>
<a href="/delete/{{ article.id }}"><i class="glyphicon glyphicon-remove" title="{{ _('Delete this article') }}"></i></a>
- <a href="/like/{{ article.id }}">
+ <a href="#">
{% if article.like %}
- <i class="glyphicon glyphicon-star" title="{{ _('One of your favorites') }}"></i>
+ <i class="glyphicon glyphicon-star like" title="{{ _('One of your favorites') }}"></i>
{% else %}
- <i class="glyphicon glyphicon-star-empty" title="{{ _('Click if you like this article') }}"></i>
+ <i class="glyphicon glyphicon-star-empty like" title="{{ _('Click if you like this article') }}"></i>
{% endif %}
</a>
{% if article.readed %}
bgstack15