grav/themes/buha2/templates/events.html.twig

18 lines
695 B
Twig

{% extends 'partials/base.html.twig' %}
{% set collection = page.collection()|filter(page => page.header.event is defined) %}
{% block content %}
{{ page.content|raw }}
{# display posts with 'featured' tag on current news page #}
{% for child in taxonomy.findTaxonomy({'tag': "featured"}) %}
{% include 'partials/news-list-item.html.twig' with {news: page, page: child} %}
{% endfor %}
{# display posts without 'featured' tag #}
{% for child in collection %}
{% if "featured" not in child.taxonomy['tag'] %}
{% include 'partials/news-list-item.html.twig' with {news: page, page: child} %}
{% endif %}
{% endfor %}
{% endblock %}