diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-10-28 01:12:08 +0100 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-10-28 01:12:08 +0100 |
commit | 52603c19ca2017b022db5ab6692f642169f97180 (patch) | |
tree | a25bb0b2c8f75a034d08c750ea9b4984b155d83b /pyaggr3g470r/templates/unread.html | |
parent | first 9 articles (diff) | |
download | newspipe-52603c19ca2017b022db5ab6692f642169f97180.tar.gz newspipe-52603c19ca2017b022db5ab6692f642169f97180.tar.bz2 newspipe-52603c19ca2017b022db5ab6692f642169f97180.zip |
tests for /unread page.
Diffstat (limited to 'pyaggr3g470r/templates/unread.html')
-rw-r--r-- | pyaggr3g470r/templates/unread.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/pyaggr3g470r/templates/unread.html b/pyaggr3g470r/templates/unread.html new file mode 100644 index 00000000..0344263f --- /dev/null +++ b/pyaggr3g470r/templates/unread.html @@ -0,0 +1,25 @@ + {% extends "layout.html" %} +{% block content %} +<div class="container"> + {% for feed in feeds %} + <div class="row"> + <div class="col-md-6 col-md-offset-3"> + <h1>{{ feed.title }}</h1> + <a href="/articles/{{ feed.id }}"><i class="glyphicon glyphicon-th-list"></i></a> + </div> + </div> + {% for number in range(0, feed.articles|length-2, 3) %} + <div class="row"> + {% 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> + {% if feed.articles[n].readed %}</h3>{% else %}</h1>{% endif %} + <h6>{{ feed.articles[n].date }}</h6> + </div> + {% endfor %} + </div> + {% endfor %} + {% endfor %} +</div><!-- /.container --> +{% endblock %}
\ No newline at end of file |