templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="{{ app.request.locale }}">
  3.     <head>
  4.         <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  5.         <meta name="viewport"
  6.             content="width=device-width, initial-scale=1, shrink-to-fit=no" />
  7.         <title>
  8.             {% block title %}
  9.                 Welcome!
  10.             {% endblock %}
  11.         </title>
  12.         <meta name="description" content="" />
  13.         <!-- Disable tap highlight on IE -->
  14.         <meta name="msapplication-tap-highlight" content="no" />
  15.         <!-- Web Application Manifest -->
  16.         <link rel="manifest" href="{{ asset('manifest.json') }}" />
  17.         <!-- Add to homescreen for Chrome on Android -->
  18.         <meta name="mobile-web-app-capable" content="yes" />
  19.         <meta name="application-name" content="VEILLE" />
  20.         <link rel="icon"
  21.             sizes="192x153"
  22.             href="{{ asset('images/icons/chrome-touch-icon-192x192.png') }}" />
  23.         <!-- Add to homescreen for Safari on iOS -->
  24.         <meta name="apple-mobile-web-app-capable" content="yes" />
  25.         <meta name="apple-mobile-web-app-status-bar-style" content="black" />
  26.         <meta name="apple-mobile-web-app-title" content="VEILLE" />
  27.         <link rel="apple-touch-icon"
  28.             href="{{ asset('images/icons/apple-touch-icon.png') }}" />
  29.         <!-- Tile icon for Win8 (144x144 + tile color) -->
  30.         <meta name="msapplication-TileImage"
  31.             content="{{ asset('images/icons/icon-144x144.png') }}" />
  32.         <meta name="msapplication-TileColor" content="#0069d9" />
  33.         <!-- Color the status bar on mobile devices -->
  34.         <meta name="theme-color" content="#ffffff" />
  35.         {{ encore_entry_link_tags('css/app') }}
  36.         {% block stylesheets %}
  37.         {% endblock %}
  38.     </head>
  39.     <body class="authentication-bg authentication-bg-pattern d-flex align-items-center">
  40.         {% block body %}
  41.         {% endblock %}
  42.         {% block javascripts %}
  43.         {% endblock %}
  44.     </body>
  45. </html>