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 %}