diff options
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} |