1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>{% block title %}Videothèque{% endblock %}</title>
- {{ encore_entry_link_tags('app') }}
- {% block stylesheets %}{% endblock %}
- <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' %}
- </header>
- <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>
- <footer class="footer">
- {% include 'footer.html.twig' %}
- </footer>
- {{ encore_entry_script_tags('app') }}
- {% block javascripts %}{% endblock %}
- </body>
- </html>
|