{% extends 'partials/base.html.twig' %} {% block body %} {# coleção global de artigos por data desc #} {%- set latest_all = page.collection({'items': '@root.descendants', 'order': {'by': 'date', 'dir': 'desc'}}) -%} {%- set latest = [] -%} {% for it in latest_all %}{% if it.template == 'item' and it.published %}{% set latest = latest|merge([it]) %}{% endif %}{% endfor %} {%- set feature = latest|first -%} {%- set side = latest|slice(1, 4) -%} {%- set grid = latest|slice(5, 12) -%}
{%- set banner = page.header.banner ?? null -%} {% if banner and banner.enabled %} {%- set banner_img = banner.image ? page.media[banner.image] : null -%} {% endif %} {% if feature %}
{% include 'partials/article-card.html.twig' with {item: feature, variant: 'feature'} %}
{% for it in side %}{% include 'partials/article-card.html.twig' with {item: it, variant: 'compact'} %}{% endfor %}
{% else %}
Ainda não há artigos publicados. Adicione conteúdo nas editorias para preencher a home.
{% endif %} {% if grid|length %}

Últimas

ver tudo
{% for it in grid %}{% include 'partials/article-card.html.twig' with {item: it} %}{% endfor %}
{% endif %} {# Faixas por editoria #} {% for slug in theme.nav_editorias %} {%- set ed = page.find('/' ~ slug) -%} {% if ed %} {%- set items = ed.children.published.order('date', 'desc')|slice(0, 4) -%} {% if items|length %}
{% for it in items %}{% include 'partials/article-card.html.twig' with {item: it} %}{% endfor %}
{% endif %} {% endif %} {% endfor %}
{% endblock %}