83e3a4e8e1
* Added Google Analytics feature * style: load GA script before head/custom * style(config): googleAnalytics field empty by default Co-authored-by: Jimmy Cai <github@jimmycai.com>
26 lines
813 B
HTML
26 lines
813 B
HTML
<meta charset='utf-8'>
|
|
<meta name='viewport' content='width=device-width, initial-scale=1'>
|
|
|
|
{{- $description := partialCached "data/description" . .RelPermalink -}}
|
|
<meta name='description' content='{{ $description }}'>
|
|
|
|
{{- $title := partialCached "data/title" . .RelPermalink -}}
|
|
<title>{{ $title }}</title>
|
|
|
|
<link rel='canonical' href='{{ .Permalink }}'>
|
|
|
|
{{- partial "head/style.html" . -}}
|
|
{{- partial "head/script.html" . -}}
|
|
{{- partial "head/opengraph/include.html" . -}}
|
|
|
|
{{- range .AlternativeOutputFormats -}}
|
|
<link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink | safeURL }}">
|
|
{{- end -}}
|
|
|
|
{{ with .Site.Params.favicon }}
|
|
<link rel="shortcut icon" href="{{ . }}" />
|
|
{{ end }}
|
|
|
|
{{- template "_internal/google_analytics_async.html" . -}}
|
|
{{- partial "head/custom.html" . -}}
|