aboutsummaryrefslogtreecommitdiff
path: root/source/static
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-04-12 07:22:35 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-04-12 07:22:35 +0200
commita2b56faa6b7957bdb7044640b21f31f2be4c5af5 (patch)
tree31caaba242fe2d0efc49a40137edc7c5585f7448 /source/static
parentAdded a link to the page of unread article in the /feed page. (diff)
downloadnewspipe-a2b56faa6b7957bdb7044640b21f31f2be4c5af5.tar.gz
newspipe-a2b56faa6b7957bdb7044640b21f31f2be4c5af5.tar.bz2
newspipe-a2b56faa6b7957bdb7044640b21f31f2be4c5af5.zip
Minor bugfix: the link to the heart picto was wrong.
Diffstat (limited to 'source/static')
-rw-r--r--source/static/templates/feed.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/static/templates/feed.html b/source/static/templates/feed.html
index 7746c9e2..d71672b1 100644
--- a/source/static/templates/feed.html
+++ b/source/static/templates/feed.html
@@ -50,7 +50,7 @@ import utils
# display a heart for faved articles
if article["article_like"] == True:
- like = """ <img src="/img/heart.png" title="I like this article!" />"""
+ like = """ <img src="/static/img/heart.png" title="I like this article!" />"""
else:
like = ""
bgstack15