23 lines
899 B
Twig
23 lines
899 B
Twig
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
{% block head %}
|
||
|
<title>{% block title %}{{ 'view.base.title'|trans({}, 'view', app.request.session.get('_locale')) }}{% endblock %}</title>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
{% block stylesheets %}
|
||
|
{{ encore_entry_link_tags('app', null, 'appConfig') }}
|
||
|
{{ encore_entry_link_tags('theme', null, 'themeConfig') }}
|
||
|
{% endblock %}
|
||
|
{% endblock %}
|
||
|
</head>
|
||
|
<body>
|
||
|
{% block body %}
|
||
|
{% block body_content %}{% endblock %}
|
||
|
{% block javascripts %}
|
||
|
{{ encore_entry_script_tags('app', null, 'appConfig') }}
|
||
|
{{ encore_entry_script_tags('theme', null, 'themeConfig') }}
|
||
|
{% endblock %}
|
||
|
{% endblock %}
|
||
|
</body>
|
||
|
</html>
|