Fixed images sorting in news

This commit is contained in:
Alexander Borsuk 2023-04-07 01:00:48 +02:00
parent f1123e78fc
commit ed8bea7b06
2 changed files with 3 additions and 3 deletions

View file

@ -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 %}
<div class="news_date">&nbsp;<a href="{{ page.path }}">{{ page.date | date(format='%B %e, %Y') }}</a>&nbsp;</div>
{# Display wide images below the text instead of to the right. #}
{% set_global noflex = '' %}
@ -39,7 +39,7 @@
{% endif %}
<span class="news_images">
{% for photo in page.assets %}
{% for photo in page.assets | sort %}
<img class="news_image" src="{{ page.path }}/{{ photo | split(pat='/') | last }}" />
{% endfor %}
</span>

View file

@ -8,7 +8,7 @@
{{ resource.content | safe }}
</div>
{% for photo in resource.assets %}
{% for photo in resource.assets | sort %}
<img class="news_image" src="{{ resource.path }}/{{ photo | split(pat='/') | last }}" />
{% endfor %}