32 lines
742 B
Twig
32 lines
742 B
Twig
{# seacms-theme
|
|
# SPDX-License-Identifier: EUPL-1.2 #}
|
|
|
|
<!DOCTYPE html>
|
|
{# TODO manage lang #}
|
|
<html lang="fr">
|
|
{% block head %}
|
|
{% include "includes/_head.twig" %}
|
|
{% endblock head %}
|
|
|
|
{% block body %}
|
|
<body id="page-top">
|
|
|
|
{% block header %}
|
|
{% include "includes/_header.twig" %}
|
|
{% endblock header %}
|
|
|
|
{% block content %}
|
|
{% include "includes/_content.twig" %}
|
|
{% endblock content %}
|
|
|
|
{% block footer %}
|
|
{% include "includes/_footer.twig" %}
|
|
{% endblock footer %}
|
|
|
|
{% block picocontenteditor %}
|
|
{{ include('@PicoContentEditor/content.twig', ignore_missing = true) }}
|
|
{% endblock picocontenteditor %}
|
|
|
|
</body>
|
|
{% endblock body %}
|
|
</html> |