aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-11-05 08:01:51 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-11-05 08:01:51 +0100
commit61b6f4a6e2c2a0f584d733551764cd0a6bdf6f95 (patch)
tree895b08e376602010b4200f21d071f3b1654226b1 /pyaggr3g470r/templates
parentMinor improvement for the /unread tempate. (diff)
downloadnewspipe-61b6f4a6e2c2a0f584d733551764cd0a6bdf6f95.tar.gz
newspipe-61b6f4a6e2c2a0f584d733551764cd0a6bdf6f95.tar.bz2
newspipe-61b6f4a6e2c2a0f584d733551764cd0a6bdf6f95.zip
Missing character...
Diffstat (limited to 'pyaggr3g470r/templates')
-rw-r--r--pyaggr3g470r/templates/unread.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyaggr3g470r/templates/unread.html b/pyaggr3g470r/templates/unread.html
index e962a9f1..a7991363 100644
--- a/pyaggr3g470r/templates/unread.html
+++ b/pyaggr3g470r/templates/unread.html
@@ -2,7 +2,7 @@
{% block content %}
<div class="container">
{% if feeds|count == 0 %}
- <p>No unread articles.</p>
+ <h1>No unread articles.</h1>
{% else %}
{% for feed in feeds %}
<div class="row">
@@ -36,6 +36,6 @@
</div>
{% endif %}
{% endfor %}
- {% endif}
+ {% endif %}
</div><!-- /.container -->
{% endblock %}
bgstack15