aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-04-14 00:23:08 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-04-14 00:23:08 +0200
commit57efe03c256641668e9909e8ced5f50495bbd66f (patch)
treebc470a72b727746a850affceab857550ca924a6f
parentA picto was not displayed in the /articles page. (diff)
downloadnewspipe-57efe03c256641668e9909e8ced5f50495bbd66f.tar.gz
newspipe-57efe03c256641668e9909e8ced5f50495bbd66f.tar.bz2
newspipe-57efe03c256641668e9909e8ced5f50495bbd66f.zip
The heart pict wasn't any more present in the /history page.
-rw-r--r--source/static/templates/history.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/static/templates/history.html b/source/static/templates/history.html
index e6826032..a0b42fd2 100644
--- a/source/static/templates/history.html
+++ b/source/static/templates/history.html
@@ -44,7 +44,7 @@ from collections import Counter
not_read_begin, not_read_end = "", ""
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 = ""
# Descrition for the CSS ToolTips
@@ -77,4 +77,4 @@ from collections import Counter
html += '<div style="width: 35%; overflow:hidden; text-align: justify">' + \
utils.tag_cloud([(elem, timeline[elem]) for elem in timeline.keys()], query_string) + '</div>'
%>
- ${html} \ No newline at end of file
+ ${html}
bgstack15