aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/feed_list_simple.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/templates/feed_list_simple.html')
-rw-r--r--src/web/templates/feed_list_simple.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/templates/feed_list_simple.html b/src/web/templates/feed_list_simple.html
index 3e04ad7e..5f692a53 100644
--- a/src/web/templates/feed_list_simple.html
+++ b/src/web/templates/feed_list_simple.html
@@ -12,7 +12,7 @@
{% for feed in feeds %}
<tr>
<td>{{ loop.index }}</td>
- <td>{% if feed.icon_url %}<img src="{{ url_for('icon.icon', url=feed.icon_url) }}" width="16px" />&nbsp;{% endif %}{{ feed.title }}</td>
+ <td>{% if feed.icon_url %}<img src="{{ url_for('icon.icon', url=feed.icon_url) }}" width="16px" />&nbsp;{% endif %} <a href="{{ url_for('feed.feed_pub', feed_id=feed.id) }}">{{ feed.title }}</a></td>
<td><a href="{{ feed.site_link }}">{{ feed.site_link }}</a></td>
</tr>
{% endfor %}
bgstack15