templates\base.twig line 1

  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8"/>
  5.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.         <link rel="icon" href="/images/icon.png"/>
  7.         <title>VACAF</title>
  8.         {% block stylesheets %}
  9.             {{ encore_entry_link_tags('app') }}
  10.             {% for link in encore_css %}
  11.                 {{ encore_entry_link_tags(link) }}
  12.             {% endfor %}
  13.         {% endblock %}
  14.         {% block javascripts %}
  15.             {{ encore_entry_script_tags('app') }}
  16.             {% for script in encore_js %}
  17.                 {{ encore_entry_script_tags(script) }}
  18.             {% endfor %}
  19.         {% endblock %}
  20.     </head>
  21.     <body>
  22.         {% include 'top.twig' %}
  23.         {% include 'ariane.twig' %}
  24.         {% block body %}{% endblock %}
  25.         {% include 'bottom.twig' %}
  26.     </body>
  27. </html>