base.html.twig 897 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <meta name="color-scheme" content="light dark">
  8. <title>{% block title %}Welcome!{% endblock %}</title>
  9. <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>">
  10. {% block stylesheets %}
  11. {{ encore_entry_link_tags('app') }}
  12. {% endblock %}
  13. {% block javascripts %}
  14. {{ encore_entry_script_tags('app') }}
  15. {% endblock %}
  16. </head>
  17. <body>
  18. <main class="container">
  19. {% block body %}{% endblock %}
  20. </main>
  21. </body>
  22. </html>