templates/base.html.twig line 1

Open in your IDE?
  1. {% set baseUrl     = app.request.getSchemeAndHttpHost() %}
  2. {% set gmapsApiKey = "AIzaSyCEABRtDvS7jW2LYBSWr0zWBVMFt97dgBM" %}
  3. <!DOCTYPE html>
  4. <html class="wide wow-animation scrollTo" lang="it">
  5.     <head>
  6.         <title>{% block title %}Universo Salute – Opera Don Uva – Col cuore, per mano, dal 1922{% endblock %}</title>
  7.         <meta charset="utf-8" />
  8.         <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0" />
  9.         <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  10.         <link rel="icon" href="{{ baseUrl }}/assets/images/favicon.png" type="image/x-icon" />
  11.         <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Asap:400,500,600,700%7CLato:400italic,400,700" />
  12.         <style>.ie-panel{display: none;background: #212121;padding: 10px 0;box-shadow: 3px 3px 5px 0 rgba(0,0,0,.3);clear: both;text-align:center;position: relative;z-index: 1;} html.ie-10 .ie-panel, html.lt-ie-10 .ie-panel {display: block;}</style>
  13.         {% block stylesheets %}
  14.             {# 'app' must match the first argument to addEntry() in webpack.config.js #}
  15.             {{ encore_entry_link_tags('theme_style') }}
  16.             {{ encore_entry_link_tags('app') }}
  17.             <!-- Renders a link tag (if your module requires any CSS)
  18.                  <link rel="stylesheet" href="/build/app.css"> -->
  19.         {% endblock %}
  20.         <script src="{{ baseUrl }}/assets/theme/js/core.min.js" defer="defer"></script>
  21.         {% block javascripts %}
  22.             {{ encore_entry_script_tags('theme_script') }}
  23.             {{ encore_entry_script_tags('app') }}
  24.             <!-- Renders app.js & a webpack runtime.js file
  25.                 <script src="/build/runtime.js" defer></script>
  26.                 <script src="/build/app.js" defer></script>
  27.                 See note below about the "defer" attribute -->
  28.         {% endblock %}
  29.     </head>
  30.     <body>
  31.         <div class="preloader">
  32.             <div class="preloader-body">
  33.                 <div class="cssload-container">
  34.                     <div class="cssload-double-torus"></div>
  35.                 </div>
  36.             </div>
  37.         </div>
  38.         <div class="page" id="top">
  39.             {% include('common/header_v2.html.twig') %}
  40.             {% block content %}{% endblock %}
  41.             {% include('common/footer.html.twig') %}
  42.         </div>
  43.     </body>
  44. </html>