base.html.twig 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  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. <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
  8. {{ encore_entry_link_tags('app') }}
  9. {% block stylesheets %}{% endblock %}
  10. {{ encore_entry_script_tags('app') }}
  11. {% block javascripts %}{% endblock %}
  12. <link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
  13. </head>
  14. <body>
  15. <div class="container">
  16. <header>
  17. {% include 'flashbag.html.twig' %}
  18. {% include 'navbar.html.twig' %}
  19. {% include 'modal.html.twig' %}
  20. <h1 class="text-center">{% block titre %}{% endblock %}</h1>
  21. </header>
  22. <main role="main">
  23. {% block body %}{% endblock %}
  24. </main>
  25. <footer class="footer">
  26. {% include 'footer.html.twig' %}
  27. </footer>
  28. </div>
  29. </body>
  30. </html>