{% extends 'layout.html.twig' %}
{% block content %}
{{ include('Includes/content-default.html.twig') }}
{% if documents.getTotalCount() > 0 %}
{# we use the Pimcore 4 compatible placeholder notation here (indexed array) #}
{% trans with [documents.getTotalCount()] %}Total: %s{% endtrans %}
{# for new developments/translation keys you should use the native Symfony translator syntax: #}
{# {% trans with { '%count%': documents.getTotalCount() } %}Total: %count%{% endtrans %} #}