{% 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) -%}
Ainda não há conteúdo publicado nesta seção.