43 lines
1.8 KiB
HTML
43 lines
1.8 KiB
HTML
|
<!-- JSON-LD -->
|
||
|
{{ if .IsHome }}
|
||
|
<script type="application/ld+json">
|
||
|
{
|
||
|
"@context": "http://schema.org",
|
||
|
"@type": "WebSite",
|
||
|
"url": "{{ .Permalink }}",
|
||
|
"name": "{{ .Site.Title }}",
|
||
|
"author": {
|
||
|
"@type": "Person",
|
||
|
"name": "{{ .Site.Params.author }}"
|
||
|
},
|
||
|
"description": "{{ .Site.Params.description }}",
|
||
|
}
|
||
|
</script>
|
||
|
{{ end }}
|
||
|
{{ if .IsPage }}
|
||
|
<script type="application/ld+json">
|
||
|
"@context" : "http://schema.org",
|
||
|
"@type" : "BlogPosting",
|
||
|
"mainEntityOfPage": {
|
||
|
"@type": "WebPage",
|
||
|
"@id": "{{ .Site.BaseURL }}"
|
||
|
},
|
||
|
"articleSection" : "{{ .Section }}",
|
||
|
"name" : "{{ .Title }}",
|
||
|
"headline" : "{{ .Title }}",
|
||
|
"description" : "{{ if .Description }}{{ .Description }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ end }}{{ end }}",
|
||
|
"inLanguage" : "{{ .Site.LanguageCode }}",
|
||
|
"author" : "{{ if isset .Params "author" }}{{ .Params.author }}{{ else }}{{ .Site.Params.author }}{{ end }}",
|
||
|
"creator" : "{{ if isset .Params "author" }}{{ .Params.author }}{{ else }}{{ .Site.Params.author }}{{ end }}",
|
||
|
"publisher": "{{ if isset .Params "author" }}{{ .Params.author }}{{ else }}{{ .Site.Params.author }}{{ end }}",
|
||
|
"accountablePerson" : "{{ if isset .Params "author" }}{{ .Params.author }}{{ else }}{{ .Site.Params.author }}{{ end }}",
|
||
|
"copyrightHolder" : "{{ if isset .Params "author" }}{{ .Params.author }}{{ else }}{{ .Site.Params.author }}{{ end }}",
|
||
|
"copyrightYear" : "{{ .Date.Format "2006" }}",
|
||
|
"datePublished": "{{ .Date }}",
|
||
|
"dateModified" : "{{ .Date }}",
|
||
|
"url" : "{{ .Permalink }}",
|
||
|
"wordCount" : "{{ .WordCount }}",
|
||
|
"keywords" : [ {{ if isset .Params "tags" }}{{ range .Params.tags }}"{{ . }}",{{ end }}{{ end }} {{with .Site.Title}}"{{ .}}"{{ end }}]
|
||
|
}
|
||
|
</script>
|
||
|
{{ end }}
|