Fixed missing default section template for news subsections

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2022-12-01 23:58:13 +01:00
parent b305f2d88f
commit 25cb2ae319

24
templates/section.html Normal file
View file

@ -0,0 +1,24 @@
{% extends 'base.html' %}
{% block content %}
<h1>{{ resource.title }}</h1>
{# Iterate and use en sections by default and use localized versions only if they are present #}
{% set enNewsSectionTranslation = section.translations | filter(attribute='lang', value='en') | first %}
{% set enNewsSection = get_section(path=enNewsSectionTranslation.path) %}
{% for page in section.pages %}
{% set translatedPage = page.translations | filter(attribute='lang', value=lang) | first %}
{% if translatedPage %}
{% set page = get_page(path=translatedPage.path) %}
{% endif %}
<div class="news_date">&nbsp;<a href="{{ page.path }}">{{ page.date | date(format='%B %e, %Y') }}</a>&nbsp;</div>
<div class="news_content_image">
{% if page.content %}
<div class="news_content">{{ page.content | safe }}</div>
{% endif %}
{% for photo in page.assets %}
<img class="news_image" src="{{ page.path }}/{{ photo | split(pat='/') | last }}" />
{% endfor %}
</div>
{% endfor %}
{% endblock content %}