From ed8bea7b062dfa45ce176b57172d05f76af14152 Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Fri, 7 Apr 2023 01:00:48 +0200 Subject: [PATCH] Fixed images sorting in news --- templates/news.html | 4 ++-- templates/news_post.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/news.html b/templates/news.html index b7e183d7..c8efe81d 100644 --- a/templates/news.html +++ b/templates/news.html @@ -22,7 +22,7 @@ {% set translatedPage = page.translations | filter(attribute='lang', value=lang) | first %} {% if translatedPage %} {% set page = get_page(path=translatedPage.path) %} -{% endif %} +{% endif %}
 {{ page.date | date(format='%B %e, %Y') }} 
{# Display wide images below the text instead of to the right. #} {% set_global noflex = '' %} @@ -39,7 +39,7 @@ {% endif %} -{% for photo in page.assets %} +{% for photo in page.assets | sort %} {% endfor %} diff --git a/templates/news_post.html b/templates/news_post.html index dde148b7..c79137b3 100644 --- a/templates/news_post.html +++ b/templates/news_post.html @@ -8,7 +8,7 @@ {{ resource.content | safe }} -{% for photo in resource.assets %} +{% for photo in resource.assets | sort %} {% endfor %}