base.html.twig 818 B

1234567891011121314151617181920212223242526272829
  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 style="padding-top:5rem;padding-bottom:4rem;">
  12. <header>
  13. {% include 'modal.html.twig' %}
  14. {% include 'flashbag.html.twig' %}
  15. {% include 'navbar.html.twig' %}
  16. </header>
  17. <h1>{% block titre %}{% endblock %}</h1>
  18. <main role="main">
  19. {% block body %}{% endblock %}
  20. </main>
  21. {% include 'footer.html.twig' %}
  22. {{ encore_entry_script_tags('app') }}
  23. {% block javascripts %}{% endblock %}
  24. </body>
  25. </html>