diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-04-14 00:23:08 +0200 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-04-14 00:23:08 +0200 |
commit | 57efe03c256641668e9909e8ced5f50495bbd66f (patch) | |
tree | bc470a72b727746a850affceab857550ca924a6f /source/static/templates | |
parent | A picto was not displayed in the /articles page. (diff) | |
download | newspipe-57efe03c256641668e9909e8ced5f50495bbd66f.tar.gz newspipe-57efe03c256641668e9909e8ced5f50495bbd66f.tar.bz2 newspipe-57efe03c256641668e9909e8ced5f50495bbd66f.zip |
The heart pict wasn't any more present in the /history page.
Diffstat (limited to 'source/static/templates')
-rw-r--r-- | source/static/templates/history.html | 4 |
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} |