34 lines
845 B
Twig
34 lines
845 B
Twig
{#!
|
|
# SeaCMS 1.0.0-alpha.2 (https://git.defis.info/SeaCMS/seacms)
|
|
# Licensed under EUPL (https://git.defis.info/SeaCMS/seacms/src/branch/master/LICENCE)
|
|
#}
|
|
|
|
<!DOCTYPE html>
|
|
{# TODO manage lang #}
|
|
<html lang="en">
|
|
{% 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> |