<main>
<div class="body__container">
{% if render_paging_options is defined and render_paging_options %}
{% include 'press_site/actions/movies/partials/listing/paging.html.twig' %}
{% endif %}
{% if block_title is defined and block_title is not empty %}
<div class="category__title-container">
<h1>{{ block_title }}</h1>
</div>
{% endif %}
<div class="body__category-container">
{% for entity in collection %}
{% include 'press_site/actions/movies/partials/listing/single_list_item.html.twig' with { entity: entity } %}
{% endfor %}
</div>
{% if render_paging_options is defined and render_paging_options %}
{% include 'press_site/actions/movies/partials/listing/paging.html.twig' with {
render_limit: false,
classes: 'current-page center bottom'
} %}
{% endif %}
</div>
</main>