aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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