templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}GVAS + AR A/S{% endblock %}</title>
  6.         {% block stylesheets %}
  7.             {{ encore_entry_link_tags('app') }}
  8.             <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
  9.             <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
  10.             <meta name="viewport" content="minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no" />
  11.             <link rel="apple-touch-icon" sizes="180x180" href="{{asset('build/images/apple-touch-icon.png')}}">
  12.             <link rel="icon" type="image/png" sizes="32x32" href="{{asset('build/images/favicon-32x32.png')}}">
  13.             <link rel="icon" type="image/png" sizes="16x16" href="{{asset('build/images/favicon-16x16.png')}}">
  14.             <link rel="mask-icon" href="{{asset('build/images/safari-pinned-tab.svg')}}" color="#d55b5b">
  15.             <meta name="msapplication-TileColor" content="#b91d47">
  16.             <meta name="msapplication-config" content="{{asset('build/images/browserconfig.xml')}}">
  17.             <meta name="theme-color" content="#ffffff">
  18.             <link rel="manifest" href="{{ asset('build/images/site.webmanifest') }}" />
  19.         {% endblock %}
  20.         {% block javascripts %}
  21.             {{ encore_entry_script_tags('app') }}
  22.         {% endblock %}
  23.     </head>
  24.     <body>
  25.         {% block body %}
  26.         <div id="aras"></div>
  27.         {% endblock %}
  28.     </body>
  29. </html>