26 lines
1.1 KiB
Twig
26 lines
1.1 KiB
Twig
<div class="container mb-16"
|
|
id="myep"
|
|
hx-boost="true"
|
|
hx-indicator="#loading-indicator">
|
|
<div class="relative z-20 flex items-center justify-between pb-4">
|
|
{% if is_granted('ROLE_USER') %}
|
|
<nav class="w-full bg-zinc-100 flex items-center mb-8 relative">
|
|
<div class="flex-1 block text-2xl px-4">My E&P</div>
|
|
<div class="bg-zinc-50 shadow w-full lg:w-auto absolute lg:relative z-10 lg:z-auto top-full lg:top-auto left-0 lg:shadow-none lg:flex lg:space-x-4">
|
|
<div class="lg:flex lg:items-center m-0">
|
|
{{ knp_menu_render(knp_menu_get('main')) }}
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
{% endif %}
|
|
</div>
|
|
<div id="content">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
<div class="htmx-indicator fixed top-0 left-0 inset-0 z-10 bg-white/90 flex items-center justify-center"
|
|
id="loading-indicator">
|
|
{% include '_partials/_spinner.html.twig' with { 'class': 'w-8 h-8'} %}
|
|
</div>
|
|
{% include '_partials/_flashes.html.twig' %}
|
|
</div>
|