35 lines
845 B
Twig
Executable File
35 lines
845 B
Twig
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{% block title %} {{ titlePage }} {% endblock %}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
{% block stylesheets %}
|
|
{{ encore_entry_link_tags('app_frontend') }}
|
|
{% endblock %}
|
|
|
|
{% block javascripts %}
|
|
{{ encore_entry_script_tags('app_frontend') }}
|
|
{% endblock %}
|
|
|
|
</head>
|
|
|
|
{% block body %}
|
|
<body>
|
|
|
|
{% include 'frontend/basic/menu.html.twig' %}
|
|
|
|
<div class="container">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
|
|
{% include 'frontend/basic/modal.html.twig' %}
|
|
|
|
{% include 'frontend/basic/footer.html.twig' %}
|
|
|
|
</body>
|
|
{% endblock %}
|
|
|
|
|
|
</html>
|