mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
19 lines
544 B
Twig
19 lines
544 B
Twig
{% extends "@ChillMain/layout.html.twig" %}
|
|
|
|
{% block navigation_search_bar %}{% endblock %}
|
|
{% block navigation_section_menu %}
|
|
{{ chill_menu('admin_section', {
|
|
'layout': '@ChillMain/Menu/adminSection.html.twig',
|
|
}) }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% block admin_content %}<!-- block personcontent empty -->
|
|
<div class="container-fluid">
|
|
<div class="col-10 push-1">
|
|
<h2>{{ 'Welcome to the admin section !'|trans }}</h2>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
{% endblock %}
|