templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3.     <head>
  4.         <meta charset="utf-8">
  5.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.         <meta name="apple-mobile-web-app-capable" content="yes">
  7.         <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
  8.         <meta name="viewport" content="viewport-fit=cover, user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
  9.         <meta name="description" content="APAGA, santé et prévoyance des agents d'assurance ALLIANZ.">
  10.         <meta name="author" content="Logan MICHEL">
  11.         <title>{% block title %}APAGA{% endblock %}</title>
  12.         <link rel="icon" href="{{ asset('images/favicon.ico') }}" type="image/x-icon">
  13.         {% block stylesheets %}
  14.             {{ encore_entry_link_tags('app') }}
  15.         {% endblock %}
  16.         {% block javascripts %}
  17.             {{ encore_entry_script_tags('app') }}
  18.         {% endblock %}
  19.     </head>
  20.     <body class="antialiased">
  21.         {% block body %}{% endblock %}
  22.     </body>
  23. </html>