google-analytics.ejs 418 B

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