templates/front/base.html.twig line 1

  1. <!DOCTYPE html>
  2. <html lang="fr">
  3.     <head>
  4.         {#Google Tag Manager#}
  5.         <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
  6.                         new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
  7.                     j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
  8.                     'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
  9.             })(window,document,'script','dataLayer','GTM-KTRZ2TJ');</script>
  10.         {#End Google Tag Manager#}
  11.         <meta charset="UTF-8">
  12.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  13.         <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  14.         <meta name="author" content="Maxime Benard & Nicolas Planchet">
  15.         <meta name="robots" content="{{ index }}">
  16.         <title>{% if title is defined %}{{ title }}{% endif%}</title>
  17.         <meta property="og:title" content="{% if title is defined %}{{ title }}{% endif%}">
  18.         <meta property="og:site_name" content="Reprise matériel photo & vidéo en ligne | BACK ipln">
  19.         <meta name="description" content="{% if metadescription is defined %}{{ metadescription }}{% else %}Reprise matériel photo & vidéo en ligne | BACK ipln.{% endif %}">
  20.         <meta property="og:description" content="{% if metadescription is defined %}{{ metadescription }}{% else %}Reprise matériel photo & vidéo en ligne | BACK ipln.{% endif %}">
  21.     {#    <meta property="og:image" content="{{ image is defined ? image : app.request.getSchemeAndHttpHost()~''~ asset('build/img/preview-banner.jpg') }}">#}
  22.         <meta property="og:url" content="{{ app.request.getSchemeAndHttpHost()~''~path(app.request.attributes.get('_route'), app.request.attributes.get('_route_params')) }}">
  23.         <meta property="og:site" content="{{ app.request.getSchemeAndHttpHost() }}">
  24.         <meta property="og:type" content="website">
  25.         <meta property="og:locale" content="fr_FR">
  26.         {{ encore_entry_link_tags('app') }}
  27.         <link rel="apple-touch-icon" sizes="180x180" href="{{ asset('/build/img/favicon/apple-touch-icon.png') }}">
  28.         <link rel="icon" type="image/png" sizes="32x32" href="{{ asset('/build/img/favicon/favicon-32x32.png') }}">
  29.         <link rel="icon" type="image/png" sizes="16x16" href="{{ asset('/build/img/favicon/favicon-16x16.png') }}">
  30.         <link rel="manifest" href="{{ asset('/build/img/favicon/site.webmanifest') }}">
  31.         <link rel="mask-icon" href="{{ asset('/build/img/favicon/safari-pinned-tab.svg') }}" color="#0f00a2">
  32.         <link rel="shortcut icon" href="{{ asset('/build/img/favicon/favicon.ico') }}">
  33.         <meta name="msapplication-TileColor" content="#e1f6fd">
  34.         <meta name="msapplication-config" content="/build/img/favicon/browserconfig.xml">
  35.         <meta name="theme-color" content="#0F00A2">
  36.         {{ encore_entry_script_tags('app') }}
  37.         {% block stylesheets %}
  38.         {% endblock %}
  39.         {% block javascripts %}
  40.         {% endblock %}
  41.         {% block schemaDatas %}
  42.         {% endblock %}
  43.     </head>
  44.     <body itemscope="" itemtype="https://schema.org/WebPage">
  45.     <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KTRZ2TJ"
  46.   height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
  47.         {% include 'front/elements/menu.html.twig' %}
  48.         {% block body %}
  49.         {% endblock %}
  50.         {% include "front/elements/footer.html.twig"%}
  51.     </body>
  52. </html>