base.html.twig 962 B

1234567891011121314151617181920212223242526
  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 %}{{ site_title }}{% 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><text y=%221.3em%22 x=%220.2em%22 font-size=%2276%22 fill=%22%23fff%22>sf</text></svg>">
  8. {% block stylesheets %}
  9. {% endblock %}
  10. {% block javascripts %}
  11. {% block importmap %}{{ importmap('app') }}{% endblock %}
  12. {% endblock %}
  13. </head>
  14. <body>
  15. {{ include('_menu.html.twig')}}
  16. <div class="container">
  17. {{ include('_aside.html.twig') }}
  18. <main>
  19. {% block body %}
  20. {% endblock %}
  21. </main>
  22. </div>
  23. </body>
  24. </html>