templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     {% import _self as macros %}
  4.     {% macro manifest(scope) %}
  5.         <link rel='apple-touch-icon' sizes='180x180' href='/manifest/apple-touch-icon.png'>
  6.         <link rel='icon' type='image/png' sizes='32x32' href='/manifest/favicon-32x32.png'>
  7.         <link rel='icon' type='image/png' sizes='16x16' href='/manifest/favicon-16x16.png'>
  8.         <link rel='manifest' href='/manifest/site.webmanifest'>
  9.         <link rel='mask-icon' href='/manifest/safari-pinned-tab.svg' color='#f5b233'>
  10.         <link rel="manifest" href="/manifest/site.webmanifest">
  11.         <meta name='apple-mobile-web-app-title' content='UNIQOM'>
  12.         <meta name='application-name' content='UNIQOM'>
  13.         <meta name='msapplication-TileColor' content='#ffffff'>
  14.         <meta name='theme-color' content='#ba3631'>
  15.     {% endmacro %}
  16.     <head>
  17.         <meta charset="UTF-8">
  18.         <title>{% block title %}Welcome!{% endblock %}</title>
  19.         {# 
  20.             Run `composer require symfony/webpack-encore-bundle`
  21.             and uncomment the following Encore helpers to start using Symfony UX 
  22.         #}
  23.         {{ macros.manifest(_context) }}
  24.         {% block stylesheets %}
  25.             {{ encore_entry_link_tags('app') }}
  26.             <meta name="viewport" content="width=device-width, initial-scale=1">
  27.         {% endblock %}
  28.         {% block javascripts %}
  29.             {{ encore_entry_script_tags('app') }}
  30.         {% endblock %}
  31.     </head>
  32.     <body class="ea-content-width-full">
  33.         {% block body %}{% endblock %}
  34.     </body>
  35. </html>