diff --git a/templates/news.html b/templates/news.html index 119c421c..c3ab6ef3 100644 --- a/templates/news.html +++ b/templates/news.html @@ -24,7 +24,16 @@ {% set page = get_page(path=translatedPage.path) %} {% endif %}
 {{ page.date | date(format='%B %e, %Y') }} 
-
+{# Display wide images below the text instead of to the right. #} +{% set_global noflex = '' %} +{% for photo in page.assets %} + {% set meta = get_image_metadata(path=photo) %} + {% if meta.width > meta.height %} + {% set_global noflex = '_noflex' %} + {% break %} + {% endif %} +{% endfor %} +
{% if page.content %}
{{ page.content | safe }}
{% endif %}