From 736b562744d559154a2b7bf5635e12be9aff7b41 Mon Sep 17 00:00:00 2001 From: Stephen Frost Date: Tue, 14 Aug 2018 12:51:42 -0400 Subject: [PATCH] add ordering to blog posts, fix --- templates/pages/blog.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/pages/blog.html b/templates/pages/blog.html index bcdba38..e497298 100644 --- a/templates/pages/blog.html +++ b/templates/pages/blog.html @@ -5,7 +5,7 @@

Blog


-{%for blog in blogposts|sort(attribute='posttime'), reverse = True %} +{%for blog in blogposts|sort(attribute='posttime', reverse = True) %}

{{blog.title}}

Posted By: {{blog.sponsorname}} on {{blog.posttime|datetimeformat('%A, %B %d')}}

-- 2.39.5