templates/layouts/layouts_front/base_front.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="{{ app.request.locale }}">
  3. <head>
  4.     <title>{% block title %}{{ titleSite }}{% endblock %}</title>
  5.     {# ------------------------- #}
  6.     {# -- METAS -- #}
  7.     {# ------------------------- #}
  8.     {% set mediaDefaultOg = 'siteImg.jpg' %}
  9.     {% set overridetTitleOg %}
  10.         {% block titleOg %}{{ titleSite }}{% endblock %}
  11.     {% endset %}
  12.     {% set overrideMetaDescriptionOg %}
  13.         {% block metaDescriptionOg %}{{ descriptionSite }}{% endblock %}
  14.     {% endset %}
  15.     {# open graph #}
  16.     {% embed 'layouts/layouts_front/common/meta/meta_og.html.twig' %}
  17.         {% block titleOg %}
  18.             {{ overridetTitleOg }}
  19.         {% endblock %}
  20.         {% block metaDescriptionOg %}
  21.             {{ overrideMetaDescriptionOg }}
  22.         {% endblock %}
  23.     {% endembed %}
  24.     {# twitter #}
  25.     {#    {% embed 'layouts/layouts_front/common/meta/meta_twitter.html.twig' %} #}
  26.     {#        {% block titleOg %} #}
  27.     {#            {{ overridetTitleOg }} #}
  28.     {#        {% endblock %} #}
  29.     {#        {% block metaDescriptionOg %} #}
  30.     {#            {{ overrideMetaDescriptionOg }} #}
  31.     {#        {% endblock %} #}
  32.     {#    {% endembed %} #}
  33.     {# others #}
  34.     {% set overrideDesindex %}
  35.         {% block desindex %}{% endblock %}
  36.     {% endset %}
  37.     {% set overrideMetaDesc %}
  38.         {% block metaDescription %}{{ overrideMetaDescriptionOg }}{% endblock %}
  39.     {% endset %}
  40.     {% embed 'layouts/layouts_front/common/meta/meta_other.html.twig' %}
  41.         {% block desindex %}
  42.             {{ overrideDesindex }}
  43.         {% endblock %}
  44.         {% block metaDescription %}
  45.             {{ overrideMetaDesc }}
  46.         {% endblock %}
  47.     {% endembed %}
  48.     {#    {{ encore_entry_link_tags('app_front') }} #}
  49.     {#    {{ encore_entry_script_tags('app_front') }} #}
  50.     {# ------------------------- #}
  51.     {# -- LINKS -- #}
  52.     {# ------------------------- #}
  53.     {# canonical #}
  54.     {% include 'layouts/layouts_front/common/link/canonical.html.twig' %}
  55.     {# fonts #}
  56.     {% include 'layouts/layouts_front/common/link/fonts.html.twig' %}
  57.     {# favicon - icons #}
  58.     {% include 'layouts/layouts_front/common/link/icons.html.twig' %}
  59.     {# imports CSS #}
  60.     {% include 'layouts/layouts_front/common/link/imports_CSS.html.twig' %}
  61.     {# custom CSS #}
  62.     {% block stylesheets %}{% endblock %}
  63.     {# ------------------------- #}
  64.     {# -- SCRIPTS JS -- #}
  65.     {# ------------------------- #}
  66.     {# Google Tag Manager HEAD #}
  67.     {% include 'layouts/layouts_front/common/script/google_tag_manager_head.html.twig' %}
  68.     {# imports SCRIPTS #}
  69.     {% include 'layouts/layouts_front/common/script/imports_scripts_top.html.twig' %}
  70.     {# custom #}
  71.     {% embed 'layouts/layouts_front/common/script/custom_scripts_top.html.twig' %}
  72.         {% block metaDescription %}
  73.             {{ overrideMetaDesc }}
  74.         {% endblock %}
  75.     {% endembed %}
  76. </head>
  77. <body>
  78. <!-- Google Tag Manager (noscript) -->
  79. <noscript>
  80.     <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MDXSPBB"
  81.             height="0" width="0" style="display:none;visibility:hidden"></iframe>
  82. </noscript>
  83. <!-- End Google Tag Manager (noscript) -->
  84. {# Google Tag Manager BODY #}
  85. {% include 'layouts/layouts_front/common/script/google_tag_manager_body.html.twig' %}
  86. {# ------------------------- #}
  87. {# -- CONTENT -- #}
  88. {# ------------------------- #}
  89. {% include('loader/loader.html.twig') %}
  90. <div id="flashMessageAjax">
  91.     {{ include('layouts/layouts_front/flash_message.html.twig') }}
  92. </div>
  93. <header>
  94.     {% if  app.request.attributes.get('exception') is null %}
  95.         {% include 'layouts/layouts_front/nav_menu.html.twig' %}
  96.     {% endif %}
  97. </header>
  98. {% if isEcommerce == 1 %}
  99.     <div id="basketPanel" class="">
  100.         {{ include('layouts/layouts_front/tpl_basket_panel.html.twig') }}
  101.     </div>
  102. {% endif %}
  103. {% if popupMessage is defined and popupMessage is not null %}
  104.     <div id="popupFront" class="aff visible">
  105.         <div class="d-flex flex-column justify-content-center">
  106.             {{ include('layouts/layouts_front/tpl_popup.html.twig') }}
  107.         </div>
  108.     </div>
  109. {% endif %}
  110. {% block content %}{% endblock %}
  111. {% if  app.request.attributes.get('exception') is null %}
  112.     {% include 'layouts/layouts_front/nav_footer.html.twig' %}
  113. {% endif %}
  114. {# <div id="scrollToTop" class="scrollToTop mbr-arrow-up"> #}
  115. {#    <a style="text-align: center;"> #}
  116. {#        <i class="mbr-arrow-up-icon mbr-arrow-up-icon-cm cm-icon cm-icon-smallarrow-up"> #}
  117. {#        </i> #}
  118. {#    </a> #}
  119. {# </div> #}
  120. <input name="animation" type="hidden">
  121. {# ------------------------- #}
  122. {# -- SCRIPTS JS BOTTOM -- #}
  123. {# ------------------------- #}
  124. {# imports SCRIPTS #}
  125. {% include 'layouts/layouts_front/common/script/imports_scripts_bottom.html.twig' %}
  126. {# custom #}
  127. {% include 'layouts/layouts_front/common/script/custom_scripts_bottom.html.twig' %}
  128. {% block javascripts %}{% endblock %}
  129. </body>
  130. <script>
  131.     let api_error = false;
  132.     {% if api_error %}api_error = true;{% endif %}
  133. </script>
  134. </html>