We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96ecb23 commit bb25644Copy full SHA for bb25644
layouts/partials/head.html
@@ -10,3 +10,4 @@
10
<title>{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }}</title>
11
{{ partialCached "head/css.html" . }}
12
{{ partialCached "head/js.html" . }}
13
+{{ partialCached "head/analytics.html" . }}
layouts/partials/head/analytics.html
@@ -0,0 +1,9 @@
1
+<!-- Google tag (gtag.js) -->
2
+<script async src="https://www.googletagmanager.com/gtag/js?id=G-RN8E36P6MZ"></script>
3
+<script>
4
+ window.dataLayer = window.dataLayer || [];
5
+ function gtag(){dataLayer.push(arguments);}
6
+ gtag('js', new Date());
7
+
8
+ gtag('config', 'G-RN8E36P6MZ');
9
+</script>
0 commit comments