aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/articles.html
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-10-28 01:28:02 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-10-28 01:28:02 +0100
commitb0f842d3bfd695b7fc8537ad73ae3711d4bf380c (patch)
tree54841b10807b0d9e403dd3ad3baf4bd2c748940d /pyaggr3g470r/templates/articles.html
parenttests for /unread page. (diff)
downloadnewspipe-b0f842d3bfd695b7fc8537ad73ae3711d4bf380c.tar.gz
newspipe-b0f842d3bfd695b7fc8537ad73ae3711d4bf380c.tar.bz2
newspipe-b0f842d3bfd695b7fc8537ad73ae3711d4bf380c.zip
Updated /articles page.
Diffstat (limited to 'pyaggr3g470r/templates/articles.html')
-rw-r--r--pyaggr3g470r/templates/articles.html3
1 files changed, 3 insertions, 0 deletions
diff --git a/pyaggr3g470r/templates/articles.html b/pyaggr3g470r/templates/articles.html
index 3737b24e..7c81d0a5 100644
--- a/pyaggr3g470r/templates/articles.html
+++ b/pyaggr3g470r/templates/articles.html
@@ -1,6 +1,9 @@
{% extends "layout.html" %}
{% block content %}
<div class="container">
+ <div class="jumbotron">
+ <h2>{{ feed.title }}</h2>
+ </div>
{% for number in range(0, feed.articles|length-2, 3) %}
<div class="row">
{% for n in range(number, number+3) %}
bgstack15