{% import "macros/content.macro.twig" as contentMacros %} {% extends 'layout.html.twig' %} {% set lang = 1 %} {% block title %}Page Escale{% endblock %} {% block css %} {{ contentMacros.content_attachments_style() }} {% endblock %} {% block content %}

Page Escale

Contenu

{{ contentMacros.content_attachments_form(content, 'post_content', null) }} {% if movies is defined and movies is iterable and movies|length > 0 %}
{% for movie in movies %}
{{ movie.title }}
{{ movie.year }} - {{ movie.duration }}' {% if movie.authors is iterable and movie.authors|length > 0 %}

{% for author in movie.authors %} {{ author }}{{ (not loop.last) ? ', ' }} {% endfor %}

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