first commit
This commit is contained in:
34
templates/base_frontend.html.twig
Executable file
34
templates/base_frontend.html.twig
Executable file
@@ -0,0 +1,34 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user