templates/base.html.twig line 45
<!DOCTYPE html><html lang="{{ app.request.locale|split('_')[0] }}"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0"><link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Oleo+Script&display=swap" rel="stylesheet">{% block meta %}{% include "@SuluWebsite/Extension/seo.html.twig" with {"seo": extension.seo|default([]),"content": content|default([]),"localizations": localizations|default([]),"shadowBaseLocale": shadowBaseLocale|default(),} %}{% endblock %}{% block stylesheets %}{{ encore_entry_link_tags('app') }}{% endblock %}{% block style %}{% endblock %}</head><body class="flex flex-col min-h-screen bg-gray-100"><header>{% block header %}<nav class="relative w-full py-4 px-6 bg-[#4A9FCD] text-white hover:text-gray-700 focus:text-gray-700 shadow-lg navbar navbar-expand-md navbar-light"><div class="container flex items-center justify-between flex-wrap mx-auto"><a href="{{ sulu_content_root_path() }}" class="flex items-center flex-shrink-0 mr-6"><img class="object-cover h-22 w-60" src="https://www.lerepere.ch/img/logo.png"/></a><div>{% block header_secondary %}{% endblock %}</div><button class="flex items-center px-3 py-2 navbar-toggler border rounded text-white border-teal-400 hover:text-white hover:border-white" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"><svg class="fill-current h-3 w-3" viewbox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><title>Menu</title><path d="M0 3h20v2H0V3zm0 6h20v2H0V9zm0 6h20v2H0v-2z"/></svg></button>{{ render_esi(controller('Sulu\\Bundle\\CommunityBundle\\Controller\\LoginController::embedAction', {'_portal' : request.portalKey|default('default_portal_key'),'_locale' : app.request.locale})) }}</div><div class="container collapse navbar-collapse flex-grow items-center mx-auto" id="navbarSupportedContent"><ul class="navbar-nav flex flex-col pl-0 list-style-none mr-auto"><li class="nav-item p-2"><a href="/" class="block mt-4 font-bold lg:inline-block lg:mt-0 text-white hover:text-neutral-400 mr-4 {{ app.request.pathInfo == '/' ? 'underline underline-offset-8' : '' }}" title="Accueil">Accueil</a></li>{% for item in sulu_navigation_root_tree('main') %}{% set itemUrl = sulu_content_path(item.url, item.webspaceKey) %}<li class="nav-item p-2"><a href="{{ itemUrl }}" class="block mt-4 font-bold lg:inline-block lg:mt-0 text-white hover:text-neutral-400 mr-4 {{ app.request.uri starts with itemUrl ? 'underline underline-offset-8' : '' }}" title="{{ item.title }}">{{ item.title }}</a></li>{% endfor %}</ul><div></nav>{% endblock %}</header><main><div class="md:container md:mx-auto content"> {% block content %}{% endblock %}</div></main><footer class="bg-gray-200 text-center lg:text-left mt-auto"><div class="text-gray-700 text-center p-4" style="background-color: rgba(0, 0, 0, 0.2);">{% block footer %}©{{ 'now'|date('Y') }}Copyright:<a class="text-gray-800" href="https://lerepere.ch/">Association Repère</a>{% endblock %}</div></footer>{% block javascripts %}{{ encore_entry_script_tags('app') }}{% endblock %}</body></html></body></html>