aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pyaggr3g470r/templates/articles.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/articles.html b/pyaggr3g470r/templates/articles.html
index 7c81d0a5..3b29a2d6 100644
--- a/pyaggr3g470r/templates/articles.html
+++ b/pyaggr3g470r/templates/articles.html
@@ -3,6 +3,7 @@
<div class="container">
<div class="jumbotron">
<h2>{{ feed.title }}</h2>
+ <h3>{{ feed.articles|length }} articles.</h3>
</div>
{% for number in range(0, feed.articles|length-2, 3) %}
<div class="row">
@@ -33,4 +34,4 @@
</div>
{% endif %}
</div><!-- /.container -->
-{% endblock %} \ No newline at end of file
+{% endblock %}
bgstack15