templates/single-news-base.html.twig line 57

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.     {% set domaine = app.request.getSchemeAndHttpHost() %}
  5.      
  6.         <meta charset="UTF-8">
  7.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  8.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  9.         <meta property="og:image" content="{{ domaine }}{{ content.image.url }}" />
  10.         {% block meta %}
  11.             {% include "seo/seo.html.twig" with {
  12.             "seo": extension.seo|default([]),
  13.             "content": content|default([]),
  14.             "localizations": localizations|default([]),
  15.             "shadowBaseLocale": shadowBaseLocale|default(),
  16.         } %}
  17.         {% endblock %}
  18.         <link rel="stylesheet" href="/dist/fonts/stylesheet.css"/>
  19.         <link href="/dist/css/common.css?v=3" rel="stylesheet">
  20.                 <link href="/dist/css/new_css.css" rel="stylesheet">
  21.         {% include 'partials/layout/favicon.html.twig' %}
  22.     </head>
  23.     <body class="{{bodyClass}}">
  24.         {% set socials = [
  25.             {
  26.                 'iconId': 'facebook',
  27.                 'href': ''
  28.             }, {
  29.                 'iconId': 'instagram',
  30.                 'href': ''
  31.             }, {
  32.                 'iconId': 'linkedin',
  33.                 'href': ''
  34.             }, {
  35.                 'iconId': 'youtube',
  36.                 'href': ''
  37.             }
  38.         ]
  39.  %}
  40.         {% include './partials/layout/preloader.html.twig' %}
  41.         {% include 'partials/layout/sprite.svg.twig' %}
  42.         {% include './partials/layout/header.html.twig' %}
  43.         <div id="vue-root" class="smooth-wrapper">
  44.             <div id="smooth-content">
  45.                 {% block before_main %}{% endblock %}
  46.                 {% block content %}{% endblock %}
  47.                 {% include './partials/layout/footer.html.twig' %}
  48.             </div>
  49.         </div>
  50.         <div class="slider-cursor">
  51.             <div class="slider-cursor-border"></div>
  52.             <div class="slider-cursor-arrow slider-cursor-left">
  53.                 <svg viewBox="0 0 37 14">
  54.                     <use xlink:href="#arrow-prev"></use>
  55.                 </svg>
  56.             </div>
  57.             <div class="slider-cursor-arrow slider-cursor-right">
  58.                 <svg viewBox="0 0 37 14">
  59.                     <use xlink:href="#arrow-next"></use>
  60.                 </svg>
  61.             </div>
  62.         </div>
  63.         <script src="/dist/js/common.js?v=4"></script>
  64.         <script>
  65.             window.googleApiKey = '{{ GOOGLE_API_KEY}}'
  66.             window.captchaKey = '{{ GOOGLE_CAPTCHA_KEY }}'
  67.             window.bcimmoTranslations = {
  68.                 noResultsFound: "{{'Aucun résultat trouvé'|trans}}",
  69.                 loading: "{{'Chargement en cours...'|trans}}",
  70.                 startTyping: "{{'Commencez à écrire...'|trans}}",
  71.                 apply: "{{'Valider'|trans}}"
  72.             }
  73.         </script>
  74.         {% block body_end %}{% endblock %}
  75.     </body>
  76. </html>