aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-01-28 17:40:37 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-01-28 17:40:37 +0100
commitd54b987f186ed1c87fe1155890796e1d1a012814 (patch)
tree29838a082911f898ec84b4536b7765d66ff2116c
parentHTML5 fragment identifier for #top. (diff)
downloadnewspipe-d54b987f186ed1c87fe1155890796e1d1a012814.tar.gz
newspipe-d54b987f186ed1c87fe1155890796e1d1a012814.tar.bz2
newspipe-d54b987f186ed1c87fe1155890796e1d1a012814.zip
Some tests in templates...
-rw-r--r--source/templates/base.html2
-rw-r--r--source/templates/index.html3
2 files changed, 2 insertions, 3 deletions
diff --git a/source/templates/base.html b/source/templates/base.html
index 00578acb..aa375470 100644
--- a/source/templates/base.html
+++ b/source/templates/base.html
@@ -25,4 +25,4 @@
<a href="https://bitbucket.org/cedricbonhomme/pyaggr3g470r/" rel="noreferrer" target="_blank">Source code</a> of pyAggr3g470r.</p>
</div>
</body>
-</html>
+</html> \ No newline at end of file
diff --git a/source/templates/index.html b/source/templates/index.html
index 5bf6bc42..43269f0a 100644
--- a/source/templates/index.html
+++ b/source/templates/index.html
@@ -5,7 +5,7 @@ import utils
%>
<div class="right inner">
<form method=get action="/search/">
- <input type="search" name="query" value="" placeholder="Search articles" maxlength=2048 autocomplete="on">
+ <input type="search" name="query" value="" placeholder="Search articles" maxlength=2048 autocomplete="on" />
</form>
<hr />
<div class="nav_container">Your feeds (${nb_feeds}):<br />
@@ -15,7 +15,6 @@ import utils
%for feed in feeds:
<%
if mongo.nb_unread_articles(feed["feed_id"]) != 0:
- # not readed articles are in bold
not_read_begin, not_read_end = "<b>", "</b>"
else:
not_read_begin, not_read_end = "", ""
bgstack15