templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     {% block sylius_head %}
  4.         <head>
  5.             {% block stylesheets %}
  6.                 {# 'app' must match the first argument to addEntry() in webpack.config.js #}
  7.                 {{ encore_entry_link_tags('app') }}
  8.                 {{ encore_entry_link_tags('search-bar') }}
  9.                 <!-- Renders a link tag (if your module requires any CSS)
  10.                                                 <link rel="stylesheet" href="/build/app.css"> -->
  11.                 <link rel="stylesheet" href="https://openlayers.org/en/v5.3.0/css/ol.css" type="text/css">
  12.                 <script src="https://cdn.rawgit.com/openlayers/openlayers.github.io/master/en/v5.3.0/build/ol.js"></script>
  13.             {% endblock %}
  14.             <meta content="width=device-width, initial-scale=1, maximum-scale=1" name="viewport">
  15.             {% block meta %}
  16.                 {% if seo is defined and seo is not null %}
  17.                     <title>{{ seo.title }}</title>
  18.                     <meta property="og:title" content="{{ seo.title }}">
  19.                     <meta property="og:description" content="{{ seo.description }}">
  20.                     <meta property="og:type" content="{{ seo.type }}">
  21.                 {% else %}
  22.                     <title>TCA</title>
  23.                     <meta content="TCA" property="og:title">
  24.                     <meta content="TCA" property="og:description">
  25.                     <meta content="website" property="og:type">
  26.                     <link rel="shortcut icon" type="image/x-icon" href="{{ asset("build/images/favicon.ico") }}"/>
  27.                 {% endif %}
  28.                 {% block ga_js %}
  29.                     {{ encore_entry_script_tags('ga') }}
  30.                     <script>
  31.                         ga('create', "{{ getAnalyticsIdentifier() }}", 'auto');
  32.                     </script>
  33.                     {{ encore_entry_script_tags('ga-events-page-view') }}
  34.                 {% endblock %}
  35.                 {% block ga_events_js %}{% endblock %}
  36.                 <meta content="TCA" property="og:site_name"/>
  37.             {% endblock meta %}
  38.         </head>
  39.     {% endblock %}
  40.     <body class="body">
  41.         {% block sylius_page_header %}
  42.             <div id="header" class="bg-white fixed-top col-sm-12 px-0 mx-0 d-flex flex-column header-height border-b">
  43.                 {% include '@App/app/base/header/header.html.twig' %}
  44.             </div>
  45.         {% endblock %}
  46.         {% block sylius_page_container %}
  47.             <div id="page" class="content-wrapper">
  48.                 {% block page_container %}{% endblock %}
  49.             </div>
  50.         {% endblock %}
  51.         {% block sylius_page_footer %}
  52.             <div class="bg-blue">
  53.                 {% include '@App/app/base/footer/footer.html.twig' %}
  54.             </div>
  55.         {% endblock %}
  56.         {% block javascripts %}
  57.             {{ encore_entry_script_tags('app') }}
  58.         {% endblock %}
  59.     </body>
  60. </html>