aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/articles.html
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-10-13 12:10:57 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-10-13 12:10:57 +0200
commite3ed62caa7d4fe832adacf82b97b8802961e0d08 (patch)
treee8f1ed4f85eebfc2104e591303844964ba20d310 /pyaggr3g470r/templates/articles.html
parentFirst prototype for the /article page. (diff)
downloadnewspipe-e3ed62caa7d4fe832adacf82b97b8802961e0d08.tar.gz
newspipe-e3ed62caa7d4fe832adacf82b97b8802961e0d08.tar.bz2
newspipe-e3ed62caa7d4fe832adacf82b97b8802961e0d08.zip
First prototype for the /articles page.
Diffstat (limited to 'pyaggr3g470r/templates/articles.html')
-rw-r--r--pyaggr3g470r/templates/articles.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/pyaggr3g470r/templates/articles.html b/pyaggr3g470r/templates/articles.html
new file mode 100644
index 00000000..374eaea7
--- /dev/null
+++ b/pyaggr3g470r/templates/articles.html
@@ -0,0 +1,27 @@
+{% extends "layout.html" %}
+{% block content %}
+<div class="container">
+ {% for number in range(0, feed.articles|sort(attribute='date')|length-2, 3) %}
+ <div class="row">
+ <div class="col-xs-6 col-sm-4 col-md-4">
+ {% if feed.articles[number].readed %}<h3>{% else %}<h1>{% endif %}
+ <a href="/article/{{ feed.articles[number].id }}">{{ feed.articles[number].title }}</a><h2>
+ {% if feed.articles[number].readed %}</h3>{% else %}</h1>{% endif %}
+ <h6>{{ feed.articles[number].date }}</h6>
+ </div>
+ <div class="col-xs-6 col-sm-4 col-md-4">
+ {% if feed.articles[number+1].readed %}<h3>{% else %}<h1>{% endif %}
+ <a href="/article/{{ feed.articles[number+1].id }}">{{ feed.articles[number+1].title }}</a><h2>
+ {% if feed.articles[number+1].readed %}</h3>{% else %}</h1>{% endif %}
+ <h6>{{ feed.articles[number+1].date }}</h6>
+ </div>
+ <div class="col-xs-6 col-sm-4 col-md-4">
+ {% if feed.articles[number+2].readed %}<h3>{% else %}<h1>{% endif %}
+ <a href="/article/{{ feed.articles[number+2].id }}">{{ feed.articles[number+2].title }}</a><h2>
+ {% if feed.articles[number+2].readed %}</h3>{% else %}</h1>{% endif %}
+ <h6>{{ feed.articles[number+2].date }}</h6>
+ </div>
+ </div>
+ {% endfor %}
+</div><!-- /.container -->
+{% endblock %} \ No newline at end of file
bgstack15