|
@@ -9,20 +9,38 @@
|
|
|
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
|
|
|
</head>
|
|
|
<body style="padding-top:5rem;padding-bottom:4rem;">
|
|
|
+ {% include 'flashbag.html.twig' %}
|
|
|
+ {% include 'navbar.html.twig' %}
|
|
|
+
|
|
|
<header>
|
|
|
{% include 'modal.html.twig' %}
|
|
|
- {% include 'flashbag.html.twig' %}
|
|
|
- {% include 'navbar.html.twig' %}
|
|
|
</header>
|
|
|
|
|
|
- <h1>{% block titre %}{% endblock %}</h1>
|
|
|
+ <nav class="navbar">
|
|
|
+ <div class="nav-item">
|
|
|
+ <h1>{% block titre %}{% endblock %}</h1>
|
|
|
+ </div>
|
|
|
+ <div class="container-xxl d-flex align-items-md-center">
|
|
|
+ <form class="me-auto" action="{{ path('search_recherche') }}">
|
|
|
+ <div class="input-group">
|
|
|
+ <input class="form-control mr-sm-2" name="q" type="text" placeholder="Rechercher" aria-label="Rechercher">
|
|
|
+ <button class="btn btn-outline-success my-2 my-sm-0" type="submit">Go</button>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ </nav>
|
|
|
+
|
|
|
+
|
|
|
|
|
|
<main role="main">
|
|
|
{% block body %}{% endblock %}
|
|
|
</main>
|
|
|
|
|
|
- {% include 'footer.html.twig' %}
|
|
|
-
|
|
|
+ <footer class="footer">
|
|
|
+ {% include 'footer.html.twig' %}
|
|
|
+ </footer>
|
|
|
+
|
|
|
+
|
|
|
{{ encore_entry_script_tags('app') }}
|
|
|
{% block javascripts %}{% endblock %}
|
|
|
</body>
|