Modularize analytics and add extra headers (#26)

This commit is contained in:
Arnab Kumar Shil 2018-12-31 14:08:22 +06:00 committed by Track3
parent 97395d876c
commit 97cc83914f
3 changed files with 11 additions and 1 deletions

View file

@ -28,6 +28,9 @@
{{ range .Site.Params.CustomCSS -}}
<link rel="stylesheet" href="{{ . | absURL }}">
{{- end }}
{{ if templates.Exists "partials/extra-headers.html" -}}
{{ partial "extra-headers.html" . }}
{{- end }}
</head>
<body id="page">
@ -36,7 +39,7 @@
{{ block "footer" . -}}{{ end }}
{{ $script := resources.Get "js/main.js" | minify | fingerprint -}}
<script src="{{ $script.Permalink }}" {{ printf "integrity=%q" $script.Data.Integrity | safeHTMLAttr }}></script>
{{ template "_internal/google_analytics_async.html" . }}
{{ partial "analytics.html" }}
</body>
</html>

View file

@ -0,0 +1 @@
{{ template "_internal/google_analytics_async.html" . }}