Browse Source

Merge pull request #112 from OdairTrujillo/master

Migrating analytics.js to gtag.js as Google recommends.
tags/v1.0.0
Evan 4 years ago
parent
commit
b4612cc814
No account linked to committer's email address
2 changed files with 13 additions and 20 deletions
  1. 0
    19
      layouts/partials/footer.html
  2. 13
    1
      layouts/partials/head.html

+ 0
- 19
layouts/partials/footer.html View File

@@ -40,22 +40,3 @@
{{ "<!-- Main Script -->" | safeHTML }}
{{ $script := resources.Get "js/script.js" | minify}}
<script src="{{ $script.Permalink }}"></script>

{{ "<!-- google analytics -->" | safeHTML }}
{{ with .Site.Params.google_analytics_id }}
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', '{{ . }}', 'auto');
ga('send', 'pageview');
</script>
{{ end }}

+ 13
- 1
layouts/partials/head.html View File

@@ -25,4 +25,16 @@
<link rel="shortcut icon" href="{{ `images/favicon.png` | absURL }}" type="image/x-icon">
<link rel="icon" href="{{ `images/favicon.png` | absURL }}" type="image/x-icon">

</head>
{{ with .Site.Params.google_analytics_id }}
{{ "<!-- Global Site Tag (gtag.js) - Google Analytics -->" | safeHTML }}
<script async src="https://www.googletagmanager.com/gtag/js?id={{ . }}"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', '{{ . }}');
</script>
{{ end }}

</head>

Loading…
Cancel
Save