aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/home.html
diff options
context:
space:
mode:
Diffstat (limited to 'pyaggr3g470r/templates/home.html')
-rw-r--r--pyaggr3g470r/templates/home.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/pyaggr3g470r/templates/home.html b/pyaggr3g470r/templates/home.html
new file mode 100644
index 00000000..da71c881
--- /dev/null
+++ b/pyaggr3g470r/templates/home.html
@@ -0,0 +1,26 @@
+ {% 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></div>
+ </div>
+ {% for number in range(0, feed.articles[:10]|length-2, 3) %}
+ <div class="row">
+ <div class="col-xs-6 col-sm-4 col-md-4">
+ <h2>{{ feed.articles[number].title }}<h2>
+ <h6>{{ feed.articles[number].date }}</h6>
+ </div>
+ <div class="col-xs-6 col-sm-4 col-md-4">
+ <h2>{{ feed.articles[number+1].title }}<h2>
+ <h6>{{ feed.articles[number+1].date }}</h6>
+ </div>
+ <div class="col-xs-6 col-sm-4 col-md-4">
+ <h2>{{ feed.articles[number+2].title }}<h2>
+ <h6>{{ feed.articles[number+2].date }}</h6>
+ </div>
+ </div>
+ {% endfor %}
+ {% endfor %}
+</div><!-- /.container -->
+{% endblock %}
bgstack15