aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2012-10-09 08:08:30 +0200
committercedricbonhomme <devnull@localhost>2012-10-09 08:08:30 +0200
commit08c597a4c5fc154f6fe62031ac285734b54e6b3b (patch)
tree313965d62d02fca13c8ed7cfb5c8a357cb4ed413
parentUpdated the documentation: index.rst file. (diff)
downloadnewspipe-08c597a4c5fc154f6fe62031ac285734b54e6b3b.tar.gz
newspipe-08c597a4c5fc154f6fe62031ac285734b54e6b3b.tar.bz2
newspipe-08c597a4c5fc154f6fe62031ac285734b54e6b3b.zip
Added a link to the feed description page in the 'articles' page.
-rwxr-xr-xsource/pyAggr3g470r.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py
index 5f54934b..6934c48d 100755
--- a/source/pyAggr3g470r.py
+++ b/source/pyAggr3g470r.py
@@ -702,7 +702,7 @@ class Root:
html += "<hr />\n"
html += self.create_list_of_feeds()
html += """</div> <div class="left inner">"""
- html += """<h1>Articles of the feed <i>%s</i></h1><br />""" % (feed["feed_title"],)
+ html += """<h1>Articles of the feed <i><a href="/feed/%s">%s</a></i></h1><br />""" % (feed_id, feed["feed_title"])
for article in articles:
bgstack15