15 lines
524 B
Twig
15 lines
524 B
Twig
{% extends 'main/base.html.twig' %}
|
|
|
|
{% block title %}📣 Sortie.com Admin 🔊{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="flex flex-col sm:flex-row sm:ml-0 sm:w-full">
|
|
{% include 'admin/sidebar.html.twig' %}
|
|
|
|
<div class="ml-64 sm:ml-0 sm:w-full p-8">
|
|
<h1 class="text-2xl font-semibold">Bienvenue sur le Panel d'Administration</h1>
|
|
<p class="text-gray-600 mt-4">Utilisez le menu pour accéder aux différentes sections.</p>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|