templates/mobile.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="fr">
  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.     <link
  8.       rel="icon"
  9.       type="image/png"
  10.       sizes="16x16"
  11.       href="{{ asset('img/favicon/favicon-16x16.png') }}"
  12.     />
  13.     <title>Menu digital | mizogoo</title>
  14.     {% if app.environment != 'prod' %}
  15.     <meta name="robots" content="noindex, nofollow" />
  16.     {% else %} {% if not isIndexed %}
  17.     <meta name="robots" content="noindex, nofollow" />
  18.     {% endif %} {% endif %} {% if app.environment == 'prod' %}
  19.     <!-- Google Tag Manager -->
  20.     <script>
  21.       (function (w, d, s, l, i) {
  22.         w[l] = w[l] || [];
  23.         w[l].push({
  24.           "gtm.start": new Date().getTime(),
  25.           event: "gtm.js",
  26.         });
  27.         var f = d.getElementsByTagName(s)[0],
  28.           j = d.createElement(s),
  29.           dl = l != "dataLayer" ? "&l=" + l : "";
  30.         j.async = true;
  31.         j.src = "https://www.googletagmanager.com/gtm.js?id=" + i + dl;
  32.         f.parentNode.insertBefore(j, f);
  33.       })(window, document, "script", "dataLayer", "GTM-THRBNCZ");
  34.     </script>
  35.     <!-- End Google Tag Manager -->
  36.     {% endif %}
  37.   </head>
  38.   <body>
  39.     {% if app.environment == 'prod' %}
  40.     <!-- Google Tag Manager (noscript) -->
  41.     <noscript>
  42.       <iframe
  43.         src="https://www.googletagmanager.com/ns.html?id=GTM-THRBNCZ"
  44.         height="0"
  45.         width="0"
  46.         style="display: none; visibility: hidden"
  47.       ></iframe>
  48.     </noscript>
  49.     <!-- End Google Tag Manager (noscript) -->
  50.     {% endif %}
  51.     <div id="mobile"></div>
  52.     {{ encore_entry_script_tags("mobile") }}
  53.   </body>
  54. </html>