42 lines
1.3 KiB
HTML
42 lines
1.3 KiB
HTML
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<meta lang="de"> <!-- HowTo correct?-->
|
|
<meta name="author" content="{{ .Site.Params.author }}">
|
|
<meta name="keywords" content="{{ delimit .Keywords `, ` `, und ` }}">
|
|
<meta name="description" content="
|
|
{{- with .Page.Description -}}
|
|
{{ . }}
|
|
{{- else -}}
|
|
{{ .Site.Params.description }}
|
|
{{- end -}}">
|
|
<link rel="stylesheet" href="{{ "css/style.css"
|
|
| relURL }}">
|
|
<!-- RSS -->
|
|
{{ range .AlternativeOutputFormats -}}
|
|
{{- $link := `<link rel="%s" type="%s" href="%s" title="%s">` -}}
|
|
{{- $title := printf "%s - %s" $.Page.Title $.Site.Title -}}
|
|
|
|
{{- if $.Page.IsHome -}}
|
|
{{ $title = $.Site.Title }}
|
|
{{- end -}}
|
|
|
|
{{ printf $link .Rel .MediaType.Type .Permalink $title | safeHTML }}
|
|
{{- end }}
|
|
<title>
|
|
{{- if .Page.IsHome -}}
|
|
{{ .Site.Title }}
|
|
{{- else -}}
|
|
{{ .Title }} - {{ .Site.Title }}
|
|
{{- end -}}
|
|
</title>
|
|
</head>
|
|
<!-- Google tag (gtag.js) -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-TT2JW5ZYFZ"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'G-TT2JW5ZYFZ');
|
|
</script> |