26 lines
1.3 KiB
HTML
26 lines
1.3 KiB
HTML
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ if eq .IsHome true }}{{ .Site.Title }}{{ else }}{{ .Title }} | {{ .Site.Title }}{{ end }}</title>
|
|
<meta name="description" content="{{ if ne .Description "" }}{{ .Description }}{{ else }}{{ .Site.Params.description }}{{ end }}">
|
|
<!-- Social media -->
|
|
{{ template "_internal/opengraph.html" . }}
|
|
{{ template "_internal/twitter_cards.html" . }}
|
|
<link rel="canonical" href="{{ .Permalink }}">
|
|
<link rel="icon" href="{{ absURL "assets/favicon.ico" }} ">
|
|
<link rel="alternate" type="application/atom+xml" title="{{ .Site.Title }}" href="{{ absURL "atom.xml" }}" />
|
|
<link rel="alternate" type="application/json" title="{{ .Site.Title }}" href="{{ absURL "feed.json" }}" />
|
|
<link rel="shortcut icon" type="image/png" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNk+A8AAQUBAScY42YAAAAASUVORK5CYII=">
|
|
{{ partialCached "style.html" . }}
|
|
|
|
<!-- Schema.org opmaak -->
|
|
{{ if .IsHome -}}
|
|
{{ partial "schemas/schema_WebSite.html" . }}
|
|
{{- else if .IsPage -}}
|
|
{{ if or (in .Params.content_types "Person") }}
|
|
{{ partial "schemas/schema_Person.html" . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</head>
|