website/templates/news/single.html
Alexander Borsuk 0c78a84b2c Fixed missing localized news sections
It looks like a bug: some sections are automatically get the "list.html" template for taxonomy, while others don't get it.

Signed-off-by: Alexander Borsuk <me@alex.bio>
2024-04-01 14:34:16 +02:00

17 lines
730 B
HTML

{# Taxonomy term template to render /news/releases/ and other terms, where "releases" can be localized to any language #}
{% extends 'base.html' %}
{% block content %}
{# TODO: Show articles tagged for the en language if they are missing for the other language #}
{% if lang == 'en' %}
{% set rootNewsSection = "news/_index.md" %}
{% else %}
{% set rootNewsSection = "news/_index." ~ lang ~ ".md" %}
{% endif %}
{% set rootNewsSection = get_section(path=rootNewsSection) %}
<h1>{{ rootNewsSection.title }}</h1>
<h2>{{ term.name }}</h2>
{%- for page in term.pages -%}
<h3>{{ page.date | date(format='%B %e, %Y') }} <a href="{{ page.permalink }}">{{ page.title }}</a></h3>
{%- endfor -%}
{% endblock %}