templates/base.html.twig line 72

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="{{ app.request.locale|split('_')[0] }}" class="overflow-hidden {% if whiteHeader is defined and whiteHeader %}force-thick-header{% endif %}">
  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.0">
  7.         {% block meta %}
  8.             {% include "seo/seo.html.twig" with {
  9.             "seo": extension.seo|default([]),
  10.             "content": content|default([]),
  11.             "localizations": localizations|default([]),
  12.             "shadowBaseLocale": shadowBaseLocale|default(),
  13.         } %}
  14.         {% endblock %}
  15.         {# <title>{{title is defined ? title : 'Oaks Lane'}}</title> #}
  16.         {# <link href="{{asset('/frontend/dist/common.css?v=4')}}" rel="stylesheet" /> #}
  17.         <link rel="stylesheet" href="/dist/fonts/stylesheet.css?v=1"/>
  18.         <link href="/dist/css/common.css?v=5" rel="stylesheet">
  19.         <link href="/dist/css/new_css.css" rel="stylesheet">
  20.         {% include 'partials/layout/favicon.html.twig' %}
  21.     </head>
  22.     <style>
  23.         .grecaptcha-badge {
  24.             visibility: hidden !important;
  25.         }
  26.         .recaptcha-text {
  27.             font-size: 11px;
  28.             color: #666;
  29.             margin: 10px 0;
  30.             text-align: center;
  31.         }
  32.     </style>
  33.     {# {% set bodyClass = '' %}
  34.     {% set headerColor = '' %} #}
  35.     <body class="{{bodyClass}}">
  36.         {% set socials = [
  37.             {
  38.                 'iconId': 'facebook',
  39.                 'href': ''
  40.             }, {
  41.                 'iconId': 'instagram',
  42.                 'href': ''
  43.             }, {
  44.                 'iconId': 'linkedin',
  45.                 'href': ''
  46.             }, {
  47.                 'iconId': 'youtube',
  48.                 'href': ''
  49.             }
  50.         ]
  51.  %}
  52.         {% include './partials/layout/preloader.html.twig' %}
  53.         {% include 'partials/layout/sprite.svg.twig' %}
  54.         {% include './partials/layout/header.html.twig' %}
  55.         <div id="vue-root" class="smooth-wrapper">
  56.             <div id="smooth-content">
  57.                 {% block before_main %}{% endblock %}
  58.                 {% block content %}{% endblock %}
  59.                 {% include './partials/layout/footer.html.twig' %}
  60.             </div>
  61.         </div>
  62.         <div class="slider-cursor">
  63.             <div class="slider-cursor-border"></div>
  64.             <div class="slider-cursor-arrow slider-cursor-left">
  65.                 <svg viewBox="0 0 37 14">
  66.                     <use xlink:href="#arrow-prev"></use>
  67.                 </svg>
  68.             </div>
  69.             <div class="slider-cursor-arrow slider-cursor-right">
  70.                 <svg viewBox="0 0 37 14">
  71.                     <use xlink:href="#arrow-next"></use>
  72.                 </svg>
  73.             </div>
  74.         </div>
  75.         {#} <script src="{{asset('/frontend/dist/common.js?v=6')}}"></script> #}
  76.         <script src="/dist/js/common.js?v=4"></script>
  77.         <script>
  78.             window.googleApiKey = '{{ GOOGLE_API_KEY}}'
  79.             window.captchaKey = '6LfHlxIrAAAAAHU0zZg_LH6kRtAYpqWqv_gzVdsU'
  80.             window.bcimmoTranslations = {
  81.                 noResultsFound: "{{'Aucun résultat trouvé'|trans}}",
  82.                 loading: "{{'Chargement en cours...'|trans}}",
  83.                 startTyping: "{{'Commencez à écrire...'|trans}}",
  84.                 apply: "{{'Valider'|trans}}"
  85.             }
  86.         </script>
  87.         {% block body_end %}{% endblock %}
  88.     </body>
  89. </html>