aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/unread.html
diff options
context:
space:
mode:
Diffstat (limited to 'pyaggr3g470r/templates/unread.html')
-rw-r--r--pyaggr3g470r/templates/unread.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/unread.html b/pyaggr3g470r/templates/unread.html
index 40dda336..896b1372 100644
--- a/pyaggr3g470r/templates/unread.html
+++ b/pyaggr3g470r/templates/unread.html
@@ -4,7 +4,7 @@
{% if feeds|count == 0 %}
<h1>No unread articles.</h1>
{% else %}
- {% for feed in feeds %}
+ {% for feed in feeds|sort(attribute="title") %}
<div class="row">
<div class="col-md-6 col-md-offset-3">
<h1>{{ feed.title }}</h1>
bgstack15