{% import "macros/content.macro.twig" as contentMacros %} {% extends 'layout.html.twig' %} {% block title %}Page Cinémathèque{% endblock %} {% block css %} {{ contentMacros.content_attachments_style() }} {% endblock %} {% block content %}

Page Cinémathèque

Contenu

{{ contentMacros.content_attachments_form(content, 'post_content', null) }}

Escales courantes

{% if currentEscales is defined and currentEscales is iterable and currentEscales|length > 0 %}
{% for page in currentEscales %}
{{ page.title }}

{{ page.description }}

Page Escale
{% endfor %}
{% endif %}

Escales passées

{% if previousEscales is defined and previousEscales is iterable and previousEscales|length > 0 %}
{% for page in previousEscales %}
{{ page.title }}

{{ page.description }}

Page Escale
{% endfor %}
{% endif %}
{% endblock %} {% block js %} {{ contentMacros.content_attachments_script() }} {% endblock %}