base.html.twig 1.2 KB

12345678910111213141516171819202122232425262728
  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. <meta name="description" content="Point de vue d’un investisseur particulier et amateur ayant ouvert un PEA en 2003, conseils pour débuter en placement boursier, notamment les placements sur des actions en direct.">
  8. <meta name="robots" content="index, follow">
  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. {% endblock %}
  12. {% block javascripts %}
  13. {% block importmap %}{{ importmap('app') }}{% endblock %}
  14. {% endblock %}
  15. </head>
  16. <body>
  17. {{ include('_menu.html.twig')}}
  18. <div class="container">
  19. {{ include('_aside.html.twig') }}
  20. <main>
  21. {% block body %}
  22. {% endblock %}
  23. </main>
  24. </div>
  25. </body>
  26. </html>