mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-20 01:04:23 +00:00
16 lines
378 B
Twig
16 lines
378 B
Twig
{% extends "@ChillMain/Admin/layoutWithVerticalMenu.html.twig" %}
|
|
|
|
{% block vertical_menu_content %}
|
|
{% endblock %}
|
|
|
|
{% block admin_content %}
|
|
<h1>{{ 'Administration interface'|trans }}</h1>
|
|
|
|
<p>{{ 'Welcome to the admin section !'|trans }}</p>
|
|
|
|
{{ chill_menu('admin_index', {
|
|
'layout': '@ChillMain/Admin/menu_admin_index.html.twig'
|
|
}) }}
|
|
|
|
{% endblock %}
|