aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/unread.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2013-12-27 10:54:58 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2013-12-27 10:54:58 +0100
commit8172bf0724ff29aaaa2beb44b5fd31c2a6aa203b (patch)
treeb2b7ff329ef2df2d49d436c336680f5507568d05 /pyaggr3g470r/templates/unread.html
parentSort the result of the search. (diff)
downloadnewspipe-8172bf0724ff29aaaa2beb44b5fd31c2a6aa203b.tar.gz
newspipe-8172bf0724ff29aaaa2beb44b5fd31c2a6aa203b.tar.bz2
newspipe-8172bf0724ff29aaaa2beb44b5fd31c2a6aa203b.zip
Minor fix in the template of unread articles.
Diffstat (limited to 'pyaggr3g470r/templates/unread.html')
-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 896b1372..46368b9a 100644
--- a/pyaggr3g470r/templates/unread.html
+++ b/pyaggr3g470r/templates/unread.html
@@ -19,7 +19,7 @@
{% for n in range(number, number+3) %}
<div class="col-xs-6 col-sm-4 col-md-4">
{% if feed.articles[n].readed %}<h3>{% else %}<h1>{% endif %}
- <a href="/article/{{ feed.articles[n].id }}">{{ feed.articles[n].title }}</a><h2>
+ <a href="/article/{{ feed.articles[n].id }}">{{ feed.articles[n].title }}</a>
{% if feed.articles[n].readed %}</h3>{% else %}</h1>{% endif %}
<h6>{{ feed.articles[n].date }}</h6>
</div>
@@ -31,7 +31,7 @@
{% for n in range(feed.articles|length-(feed.articles|length % 3), feed.articles|length) %}
<div class="col-xs-6 col-sm-4 col-md-4">
{% if feed.articles[n].readed %}<h3>{% else %}<h1>{% endif %}
- <a href="/article/{{ feed.articles[n].id }}">{{ feed.articles[n].title }}</a><h2>
+ <a href="/article/{{ feed.articles[n].id }}">{{ feed.articles[n].title }}</a>
{% if feed.articles[n].readed %}</h3>{% else %}</h1>{% endif %}
<h6>{{ feed.articles[n].date }}</h6>
</div>
bgstack15