aboutsummaryrefslogtreecommitdiff
path: root/newspipe/templates/user_stream.html
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/templates/user_stream.html')
-rw-r--r--newspipe/templates/user_stream.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/newspipe/templates/user_stream.html b/newspipe/templates/user_stream.html
index 2cf0ab7a..87a3698b 100644
--- a/newspipe/templates/user_stream.html
+++ b/newspipe/templates/user_stream.html
@@ -53,7 +53,9 @@
{% for article in articles %}
<tr>
<td>{{ loop.index }}</td>
- <td><a href="{{ url_for('article.article_pub', article_id=article.id) }}">{{ article.title }}</a></td>
+ <td><img src="{{ url_for('icon.icon', url=article.source.icon_url) }}" width="16px" />
+ <a href="{{ url_for('article.article_pub', article_id=article.id) }}">{{ article.title }}</a>
+ </td>
<td>{{ article.date }}</td>
</tr>
{% endfor %}
bgstack15