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>
17 lines
730 B
HTML
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 %}
|