aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/ld/post.html
blob: 0afa7ad56ae0f0b6369b818596b7f1cb094b962a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<script type="application/ld+json">
	{
		"@context": "http://schema.org",
		"@type": "BlogPosting",
		"@id": {{ printf "%s" .Page.Permalink }},
		"url": {{ printf "%s" .Page.Permalink }},
		"headline": "{{ printf "%s" .Title | safeJS }}",
		{{- with .Params.summary -}}		
		"description": "{{ printf "%s" . | safeJS }}",
		{{- end }}
		{{ with .Params.date -}}
		"datePublished": {{ time.Format "2006-01-02T15:04:05-07:00" . }},
		{{- end }}
		"author": {
			"@type": "Person",
			"url": "https://www.costas.dev/me",
			"name": "Ariel Costas Guerrero"
		},
		"creator": {
			"@type": "Person",
			"url": "https://www.costas.dev/me",
			"name": "Ariel Costas Guerrero"
		},
		"inLanguage": "{{ with .Params.lang }}{{ . }}{{ else }}es{{ end }}"
	}
</script>