base.html.twig 895 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>{% block title %}Videothèque{% endblock %}</title>
  7. {{ encore_entry_link_tags('app') }}
  8. {% block stylesheets %}{% endblock %}
  9. {{ encore_entry_script_tags('app') }}
  10. {% block javascripts %}{% endblock %}
  11. <link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
  12. </head>
  13. <body>
  14. <div class="container">
  15. <header>
  16. {% include 'flashbag.html.twig' %}
  17. {% include 'navbar.html.twig' %}
  18. {% include 'modal.html.twig' %}
  19. <h1 class="text-center">{% block titre %}{% endblock %}</h1>
  20. </header>
  21. <main role="main">
  22. {% block body %}{% endblock %}
  23. </main>
  24. <footer class="footer">
  25. {% include 'footer.html.twig' %}
  26. </footer>
  27. </div>
  28. </body>
  29. </html>