aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2012-12-03 19:17:49 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2012-12-03 19:17:49 +0100
commit457e0ba10e203a0a3a38fb4cdaf4df4003b9fd3d (patch)
treef16c3c82db28a083ea905384cbb70f1d733f0691
parentMinor changes to the management page. (diff)
downloadnewspipe-457e0ba10e203a0a3a38fb4cdaf4df4003b9fd3d.tar.gz
newspipe-457e0ba10e203a0a3a38fb4cdaf4df4003b9fd3d.tar.bz2
newspipe-457e0ba10e203a0a3a38fb4cdaf4df4003b9fd3d.zip
Removed <hr /> tag from the main page.
-rw-r--r--source/templates/index.html3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/templates/index.html b/source/templates/index.html
index e850ece9..fea71154 100644
--- a/source/templates/index.html
+++ b/source/templates/index.html
@@ -99,7 +99,6 @@ import utils
html += """<br />\n<a href="/mail_notification/1:%s" title="By e-mail">Stay tuned</a>""" % (feed["feed_id"],)
else:
html += """<br />\n<a href="/mail_notification/0:%s" title="By e-mail">Stop staying tuned</a>""" % (feed["feed_id"],)
- html += """<h4><a href="/#top">Top</a></h4>"""
- html += "<hr />\n"
+ html += """<h4><a href="/#top">Top</a></h4>\n"""
%>
${html}
bgstack15