summaryrefslogtreecommitdiffstats
path: root/plugins/feedlist.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/feedlist.py')
-rw-r--r--plugins/feedlist.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/feedlist.py b/plugins/feedlist.py
index 2e7ad9f..0e87a02 100644
--- a/plugins/feedlist.py
+++ b/plugins/feedlist.py
@@ -18,7 +18,8 @@ def links_output_bits(rawdog, config, bits):
feeds.sort()
for (key, feed) in feeds:
- links += '\t<li>' + feed.get_html_link(config) + ' <a class="xmlbutton" href="' + cgi.escape(feed.url) + '">(XML)</a></li>\n'
+ links += '\t<li><a class="xmlbutton" href="' + cgi.escape(feed.url) + '"> '
+ links += '<img src="images/feed-icon.png" title="Feed source" alt="Feed source" /></a>' + feed.get_html_link(config) + '</li>\n'
links += "</ul>\n"
bits['feedlist'] = links