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

18 lines
650 B
Twig
Raw Normal View History

2023-01-10 13:26:16 +01:00
{% extends 'partials/base.html.twig' %}
2023-01-10 13:37:12 +01:00
{% set collection = page.collection() %}
2023-01-10 13:26:16 +01:00
2023-01-10 14:35:02 +01:00
{% block content %}
2023-01-10 13:26:16 +01:00
{{ page.content|raw }}
2023-01-10 13:40:53 +01:00
{# display posts with 'featured' tag on current news page #}
2023-01-10 13:37:12 +01:00
{% for child in taxonomy.findTaxonomy({'tag': "featured"}) %}
2023-01-10 13:40:53 +01:00
{% include 'partials/news-list-item.html.twig' with {news: page, page: child} %}
2023-01-10 13:37:12 +01:00
{% endfor %}
{# display posts without 'featured' tag #}
{% for child in collection %}
{% if "featured" not in child.taxonomy['tag'] %}
2023-01-10 13:40:53 +01:00
{% include 'partials/news-list-item.html.twig' with {news: page, page: child} %}
2023-01-10 13:37:12 +01:00
{% endif %}
{% endfor %}
2023-01-10 13:26:16 +01:00
{% endblock %}