templates/front/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>{% block title %} {{ sitewebFullname }}!{% endblock %}</title>
  6.     <meta name="msapplication-TileImage" content="{{ asset("uploads/logos/favicon.png") }}">
  7.     <meta name="viewport" content="width=device-width, initial-scale=1" />
  8.     <link rel="shortcut icon" href="{{ asset("uploads/logos/favicon.png") }}" type="image/x-icon"/>
  9.     {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  10.     {% block stylesheets %}
  11.         {{ encore_entry_link_tags('app') }}
  12.     {% endblock %}
  13. </head>
  14. <body>
  15. <!-- NAVBAR -->
  16.     {% include 'front/navbar.html.twig' %}
  17. {% block body %}
  18. {% endblock %}
  19. {% include 'front/footer.html.twig' %}
  20. {% block javascripts %}
  21.     {{ encore_entry_script_tags('app') }}
  22. {% endblock %}
  23. </body>
  24. </html>