templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.                 <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.                 <meta name="viewport" content="width=device-width,initial-scale=1">
  7.                 <meta name="apple-mobile-web-app-capable" content="yes">
  8.                 <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
  9.         <title>{{ company }}</title>
  10.         {{ encore_entry_link_tags('app') }}
  11.     </head>
  12.     <body>
  13.         <div id="app"></div>
  14.         {{ encore_entry_script_tags('app') }}
  15.     </body>
  16. </html>