24 lines
914 B
Twig
24 lines
914 B
Twig
<div class="my-16"
|
|
id="myep"
|
|
hx-boost="true"
|
|
hx-indicator="#loading-indicator">
|
|
<div class="fixed inset-x-0 top-0 z-20 flex items-center justify-between pb-4">
|
|
{% if is_granted('ROLE_USER') %}
|
|
<nav class="w-full bg-zinc-200 flex items-center mb-8 relative">
|
|
<div class="flex-1 block text-2xl px-4">My E&P</div>
|
|
<div class="bg-zinc-200">
|
|
{{ knp_menu_render(knp_menu_get('main')) }}
|
|
</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>
|