templates/layout/master-service.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.     <head>
  4.         <!-- Google tag (gtag.js) -->
  5. {#        <script async src="https://www.googletagmanager.com/gtag/js?id={{ ga_measurement_id }}"></script>#}
  6. {#        <script>#}
  7. {#            window.dataLayer = window.dataLayer || [];#}
  8. {#            function gtag(){dataLayer.push(arguments);}#}
  9. {#            gtag('js', new Date());#}
  10. {#            gtag('config', '{{ ga_measurement_id }}');#}
  11. {#        </script>#}
  12.         <meta charset="utf-8">
  13.         <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  14.         <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
  15.         <meta name="author" content="{{ sitename }}" />
  16.         <meta property="og:locale" content="en_US" />
  17.         <meta property="og:type" content="website" />
  18.         <meta property="og:description" content="Experience the future of online shopping with 3D product viewers" />
  19.         <meta property="og:url" content="https://ar-ty.com/" />
  20.         <meta property="og:site_name" content="Arty" />
  21.         {% block ogtags %}{% endblock %}
  22.         <title>{% if title is defined %}{{ title }}{% endif %}</title>
  23.         <link rel="shortcut icon" href="{{ asset('/favicon.png') }}" type="image/x-icon" />
  24.         <link href="https://fonts.googleapis.com/css?family=Roboto:100,400,500,700,900&amp;subset=latin-ext" rel="stylesheet">
  25.         {% block styles %}{% endblock %}
  26.         <!--[if lt IE 9]>
  27.         <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
  28.         <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  29.         <![endif]-->
  30.     </head>
  31.     <body class="{% if body_class is defined %}{{ body_class }}{% endif %}">
  32.         {% block content %}{% endblock %}
  33.         {% block javascripts %}{% endblock %}
  34.     </body>
  35. </html>