Fixed images sorting in news
This commit is contained in:
parent
f1123e78fc
commit
ed8bea7b06
2 changed files with 3 additions and 3 deletions
|
@ -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"> <a href="{{ page.path }}">{{ page.date | date(format='%B %e, %Y') }}</a> </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>
|
||||
|
|
|
@ -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 %}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue