summaryrefslogtreecommitdiffstats
path: root/layouts/partials/analytic-gtag.html
blob: d39e55028266c495618f3f9b327ed56cb8473d51 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ with .Site.GoogleAnalytics }}
<!-- GA -->
<script>
    window.dataLayer = window.dataLayer || [];

    function gtag() {
        dataLayer.push(arguments);
    }
    gtag('js', new Date());
    gtag('config', '{{ . }}');
</script>
<script async src="https://www.googletagmanager.com/gtag/js?id={{ . }}"></script>
{{ end }}