src/Social/FrontendBundle/Resources/views/ga_code.html.twig line 1

Open in your IDE?
  1. {% if ga_code and ga_code != 'xxxx' %}
  2.     <!-- Google tag (gtag.js) -->
  3.     <script async src="https://www.googletagmanager.com/gtag/js?id={{ ga_code }}"></script>
  4.     <script>
  5.         window.dataLayer = window.dataLayer || [];
  6.         function gtag(){dataLayer.push(arguments);}
  7.         gtag('js', new Date());
  8.         gtag('config', '{{ ga_code }}');
  9.     </script>
  10. {% endif %}