base.html.twig 945 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html>
  2. <html>
  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. <link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
  10. </head>
  11. <body>
  12. <div class="container">
  13. <header>
  14. {% include 'flashbag.html.twig' %}
  15. {% include 'navbar.html.twig' %}
  16. {% include 'modal.html.twig' %}
  17. <nav class="navbar">
  18. <div class="nav-item">
  19. <h1>{% block titre %}{% endblock %}</h1>
  20. </div>
  21. </nav>
  22. </header>
  23. <main role="main">
  24. {% block body %}{% endblock %}
  25. </main>
  26. <footer class="footer">
  27. {% include 'footer.html.twig' %}
  28. </footer>
  29. </div>
  30. {{ encore_entry_script_tags('app') }}
  31. {% block javascripts %}{% endblock %}
  32. </body>
  33. </html>