{% extends 'partials/base.html.twig' %} {% block content %} {% if page.url == "/" %} {% else %}
{% if page.parent.title == "Articles" %}
{% if not page.isFirst %} Article suivant {% else %}
{% endif %} {% if not page.isLast %} Article précédent {% endif %}
{% endif %}
{% for image in page.media.images %}
{{ page.title }}
{% endfor %} {% for video in page.media.videos %}
{% endfor %}
{% if page.parent.title == "Articles" %} {% endif %}

{{ page.title }}

{{ page.content|raw }}
{% endif %} {% endblock %}