Google Structured Data

This commit is contained in:
wgroeneveld 2018-07-25 09:47:59 +02:00
parent 2640f08f30
commit b52974091e
2 changed files with 43 additions and 0 deletions

View File

@ -7,6 +7,7 @@ pygmentCodeFences = true
googleAnalytics = "UA-45748221-1"
publishDir = "docs"
enableEmoji = true
enableRobotsTXT = true
[taxonomies]
tag = "tags"

View File

@ -1,4 +1,6 @@
<link rel="stylesheet" href="{{ "css/brainbaking.css" | absURL }}">
<!-- meta data tags, open graph -->
{{ if .Params.subtitle }}
<meta name="description" content="{{ .Title }} - {{ .Params.subtitle }}">
<meta content="{{ .Title }}" property="og:title">
@ -36,4 +38,44 @@
{{ end }}{{ end }}
<!-- end og -->
<!-- structured data -->
<script type="application/ld+json">
{
"@context" : "http://schema.org",
"@type" : "BlogPosting",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "{{ .Site.BaseURL }}"
},
"articleSection" : "{{ .Section }}",
"name" : "{{ .Title }}",
"headline" : "{{ .Params.subtitle }}",
"description" : "{{ if .Description }}{{ .Description }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ end }}{{ end }}",
"inLanguage" : "{{ if eq "essays" .Section }}nl-BE{{ else }}en-US{{ end }}",
{{ if .Params.bigimg }}
"image": "{{.Site.BaseURL}}{{ .Params.bigimg }}",
{{ end }}
"author" : {
"@type": "Person",
"name": "{{ .Site.Author.name }}"
},
"publisher": {
"@type": "Organization",
"name": "{{ .Site.Title }}",
"logo": {
"@type": "ImageObject",
"url": "{{.Site.BaseURL}}img/avatar-icon.png"
}
},
"accountablePerson" : "{{ .Site.Author.name }}",
"copyrightHolder" : "{{ .Site.Author.name }}",
"copyrightYear" : "{{ .Date.Format "2006" }}",
"datePublished": "{{ .Date }}",
"dateModified" : "{{ .Date }}",
"url" : "{{ .Permalink }}",
"wordCount" : "{{ .WordCount }}",
"keywords" : [ {{ if isset .Params "tags" }}{{ range .Params.tags }}"{{ . }}",{{ end }}{{ end }}"{{ .Title }}", "{{ .Section }}" ]
}
</script>
{{ template "_internal/google_analytics_async.html" . }}