google_analytics.html 414 B

1234567891011
  1. <!-- Global site tag (gtag.js) - Google Analytics -->
  2. {% if site.google_analytics and jekyll.environment == 'production' %}
  3. <script async src="https://www.googletagmanager.com/gtag/js?id={{ google_analytics }}"></script>
  4. <script>
  5. window.dataLayer = window.dataLayer || [];
  6. function gtag(){dataLayer.push(arguments);}
  7. gtag('js', new Date());
  8. gtag('config', '{{ google_analytics }}');
  9. </script>
  10. {% endif %}