base.html.twig 953 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. <nav class="navbar">
  20. <div class="nav-item">
  21. <h1>{% block titre %}{% endblock %}</h1>
  22. </div>
  23. </nav>
  24. </header>
  25. <main role="main">
  26. {% block body %}{% endblock %}
  27. </main>
  28. <footer class="footer">
  29. {% include 'footer.html.twig' %}
  30. </footer>
  31. </div>
  32. </body>
  33. </html>