From a74d04be77cbe0a9347481fa72b3b8ae954aa701 Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Sat, 27 Feb 2021 18:56:57 +0100 Subject: Don't reverse sort order in sections. The default sort order is from newest to oldest now. --- templates/film/section.html | 2 +- templates/section.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/film/section.html b/templates/film/section.html index e4d221d..85e592d 100644 --- a/templates/film/section.html +++ b/templates/film/section.html @@ -10,7 +10,7 @@ {{ section.description }}
- {% for post in section.pages | reverse %} + {% for post in section.pages %}
{% include "film/post_header.html" %}
diff --git a/templates/section.html b/templates/section.html index 0440afa..1feec4a 100644 --- a/templates/section.html +++ b/templates/section.html @@ -10,7 +10,7 @@ {{ section.description }}
- {% for post in section.pages | reverse %} + {% for post in section.pages %}
{% include "posts/header.html" %}
-- cgit v1.2.3