{% extends 'partials/base.html.twig' %} {% block body %} {%- set per_page = 9 -%} {%- set all = page.children.published.order('date', 'desc') -%} {%- set total = all|length -%} {%- set total_pages = (total / per_page)|round(0, 'ceil') -%} {%- set current = (uri.query('page') ?: 1) + 0 -%} {% if current < 1 %}{% set current = 1 %}{% endif %} {% if current > total_pages and total_pages > 0 %}{% set current = total_pages %}{% endif %} {%- set items = all|slice((current - 1) * per_page, per_page) -%}
{% include 'partials/breadcrumbs.html.twig' %}
{{ page.header.badge|default('Editoria') }}

{{ page.title }}

{% if page.header.description or page.content %}
{{ page.header.description ?: page.content|striptags|truncate(220) }}
{% endif %}
{% if items|length %}
{% for it in items %}{% include 'partials/article-card.html.twig' with {item: it} %}{% endfor %}
{% include 'partials/pagination.html.twig' with {current: current, total_pages: total_pages, base: page.url} %} {% else %}

Ainda não há conteúdo publicado nesta seção.

Voltar à home

{% endif %}
{% endblock %}