brainbaking/themes/brainbaking-minimal/layouts/partials/head-meta.html

107 lines
4.2 KiB
HTML
Raw Normal View History

2020-05-27 21:20:01 +02:00
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2018-07-25 09:47:59 +02:00
<!-- meta data tags, open graph -->
2018-07-24 21:43:40 +02:00
{{ if .Params.subtitle }}
<meta name="description" content="{{ .Title }} - {{ .Params.subtitle }}">
<meta content="{{ .Title }}" property="og:title">
<meta content="{{ .Params.subtitle }}" property="og:description">
{{ else }}
<meta name="description" content="{{ $isHomePage := eq .Title .Site.Title }}{{ .Title }}{{ if eq $isHomePage false }} - {{ .Site.Title }}{{ end }}">
<meta content="{{ $isHomePage := eq .Title .Site.Title }}{{ .Title }}{{ if eq $isHomePage false }} - {{ .Site.Title }}{{ end }}" property="og:title">
<meta content="{{ $isHomePage := eq .Title .Site.Title }}{{ .Title }}{{ if eq $isHomePage false }} - {{ .Site.Title }}{{ end }}" property="og:description">
{{ end }}
{{ if .Keywords }}
<meta content="{{ delimit .Keywords ", " }}" name="keywords">
{{ else if .Params.tags }}
<meta content="{{ delimit .Params.tags ", " }}" name="keywords">
{{ end }}
<meta property="og:url" content="{{ .Permalink }}" />
<meta property="og:type" content="{{ if .Params.type }}{{ .Params.type }}{{ else }}website{{ end }}" />
{{ if .Params.bigimg }}
<meta property="og:image" content="{{.Site.BaseURL}}{{ .Params.bigimg }}" />
{{ end }}
<!-- zie sidebar.html, zelfde logica gebruikt -->
{{ $related := first 3 (where (where (where .Site.Pages.ByDate.Reverse ".Type" "==" "post") ".Params.tags" "intersect" .Params.tags) "Permalink" "!=" .Permalink) }}
{{ if $related }}
{{ range $related }}
<meta property="og:see_also" content="{{ .Permalink }}" />
{{ end }}
{{ end }}
<meta property="article:published_time" content="{{ .PublishDate }}" />
<meta property="article:modified_time" content="{{ .Date }}" />
<meta property="article:section" content="{{ .Section }}" />
{{ with .Params.tags }}{{ range first 6 . }}
<meta property="article:tag" content="{{ . }}" />
{{ end }}{{ end }}
<!-- end og -->
2018-07-25 09:47:59 +02:00
<!-- structured data -->
<script type="application/ld+json">
{
"@context" : "http://schema.org",
"@type" : "BlogPosting",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "{{ .Site.BaseURL }}"
},
"articleSection" : "{{ .Section }}",
2020-06-09 12:16:37 +02:00
"name" : "{{ .Title | safeJS }}",
{{ if .Params.subtitle }}
2020-06-09 12:16:37 +02:00
"headline" : "{{ .Params.subtitle | safeJS }}",
{{ else }}
2020-06-09 12:16:37 +02:00
"headline" : "{{ .Title | safeJS }}",
{{ end }}
2020-06-09 12:16:37 +02:00
"description" : "{{ if .Description }}{{ .Description | safeJS }}{{ else }}{{if .IsPage}}{{ .Summary | safeJS }}{{ end }}{{ end }}",
{{ if isset .Params "language" }}
"inLanguage" : "{{ .Params.language }}",
{{ else if eq "essays" .Section }}
"inLanguage" : "nl-BE",
{{ else if eq "teaching" .Section }}
"inLanguage" : "nl-BE",
{{ else }}
"inLanguage" : "en-US",
{{ end }}
2020-06-09 12:16:37 +02:00
"isFamilyFriendly": "true",
2018-07-25 09:47:59 +02:00
{{ if .Params.bigimg }}
2020-06-09 12:16:37 +02:00
"image": "{{.Site.BaseURL}}bigimg/{{ .Params.bigimg }}",
{{ else }}
"image": "{{.Site.BaseURL}}img/avatar-icon.png",
2018-07-25 09:47:59 +02:00
{{ end }}
"author" : {
"@type": "Person",
"name": "{{ .Site.Author.name }}"
},
2020-06-09 12:16:37 +02:00
"creator" : {
"@type": "Person",
"name": "{{ .Site.Author.name }}"
},
2018-07-25 09:47:59 +02:00
"publisher": {
"@type": "Organization",
"name": "{{ .Site.Title }}",
2020-06-09 12:16:37 +02:00
"url": {{ .Site.BaseURL }},
2018-07-25 09:47:59 +02:00
"logo": {
"@type": "ImageObject",
2020-06-09 12:16:37 +02:00
"url": "{{.Site.BaseURL}}img/avatar-icon.png",
"width":"32",
"height":"32"
2018-07-25 09:47:59 +02:00
}
},
2018-07-25 09:47:59 +02:00
"accountablePerson" : "{{ .Site.Author.name }}",
2020-06-09 12:16:37 +02:00
"copyrightHolder" : "{{ .Site.Title }}",
2018-07-25 09:47:59 +02:00
"copyrightYear" : "{{ .Date.Format "2006" }}",
2020-06-09 12:16:37 +02:00
"dateCreated": "{{ .Date.Format "2006-01-02T15:04:05.00Z" | safeHTML }}",
"datePublished": "{{ .PublishDate.Format "2006-01-02T15:04:05.00Z" | safeHTML }}",
"dateModified": "{{ .Lastmod.Format "2006-01-02T15:04:05.00Z" | safeHTML }}",
2018-07-25 09:47:59 +02:00
"url" : "{{ .Permalink }}",
"wordCount" : "{{ .WordCount }}",
2020-06-09 12:16:37 +02:00
"keywords" : [ {{ if isset .Params "tags" }}{{ range .Params.tags }}"{{ . }}",{{ end }}{{ end }}"{{ .Title }}", "{{ .Section }}" ],
"genre" : [ {{ if isset .Params "tags" }}{{ range .Params.tags }}"{{ . }}",{{ end }}{{ end }}"{{ .Title }}", "{{ .Section }}" ],
"articleBody": "{{ .Content | safeJS }}"
2018-07-25 09:47:59 +02:00
}
</script>