diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-04-12 07:22:35 +0200 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-04-12 07:22:35 +0200 |
commit | a2b56faa6b7957bdb7044640b21f31f2be4c5af5 (patch) | |
tree | 31caaba242fe2d0efc49a40137edc7c5585f7448 /source/static/templates | |
parent | Added a link to the page of unread article in the /feed page. (diff) | |
download | newspipe-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/templates')
-rw-r--r-- | source/static/templates/feed.html | 2 |
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 = "" |