templates/base.html.twig line 1

Open in your IDE?
  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 %}Welcome!{% endblock %}</title>
  7.     <link rel="icon" type="image/x-icon" href="{{ asset('assets/images/logo-rond.png') }}">
  8.     {% block stylesheets %}
  9.         <link rel="stylesheet" href="{{ asset('build/shared-style.css') }}"/>
  10.         {% block stylesheets_custom %}{% endblock %}
  11.     {% endblock %}
  12.     {% block javascripts %}
  13.         {{ encore_entry_script_tags('shared-scripts') }}
  14.         {% block javascript_custom %}{% endblock %}
  15.     {% endblock %}
  16. </head>
  17. <body class="{% block bodyClass %}{% endblock %}">
  18. {% block navBar %}{% endblock %}
  19. {% block sideNav %}{% endblock %}
  20. {% block body %}{% endblock %}
  21. {% block footer %}{% endblock %}
  22. {% include 'partials/gdpr/gdpr.html.twig' %}
  23. </body>
  24. </html>