aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/home.html
diff options
context:
space:
mode:
authorFrançois Schmidts <francois.schmidts@gmail.com>2015-07-06 11:47:45 +0200
committerFrançois Schmidts <francois.schmidts@gmail.com>2015-07-06 13:54:05 +0200
commitc47e8fbd86eebd4c61888b1cba6cf39670679fd0 (patch)
treeb73d664257c1d4248538f79eb77b5b3d460e25ff /pyaggr3g470r/templates/home.html
parentlight refact (diff)
downloadnewspipe-c47e8fbd86eebd4c61888b1cba6cf39670679fd0.tar.gz
newspipe-c47e8fbd86eebd4c61888b1cba6cf39670679fd0.tar.bz2
newspipe-c47e8fbd86eebd4c61888b1cba6cf39670679fd0.zip
the icon isn't a url but a b64 dump
Diffstat (limited to 'pyaggr3g470r/templates/home.html')
-rw-r--r--pyaggr3g470r/templates/home.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/home.html b/pyaggr3g470r/templates/home.html
index 7e272b55..42a5d498 100644
--- a/pyaggr3g470r/templates/home.html
+++ b/pyaggr3g470r/templates/home.html
@@ -106,7 +106,7 @@
{% endif %}
</td>
<td><a class="open-article" href="/article/redirect/{{ article.id}}" target="_blank">
- {% if article.source.icon %}<img src="{{ article.source.icon }}" width="16px" />{% endif %}
+ {% if article.source.icon %}<img src="{{ url_for('feed.icon', feed_id=article.feed_id) }}" width="16px" />{% endif %}
<span class="hidden-xs">{{ article.source.title|safe }}</span></a></td>
<td {%if filter_ == 'all' and article.readed == False %}style='font-weight:bold'{% endif %}>
<a href="/article/{{ article.id }}">{{ article.title|safe }}</a>
bgstack15