15 lines
377 B
HTML
15 lines
377 B
HTML
|
{{- "<!-- webpage metadata -->" | safeHTML }}
|
||
|
<meta property="og:type" content="website" />
|
||
|
<script defer type="application/ld+json">
|
||
|
{
|
||
|
"@context": "http://schema.org",
|
||
|
"@type": "WebPage",
|
||
|
"name": {{ .Title }},
|
||
|
"url": {{ .Permalink }},
|
||
|
"description": {{ (or .Description .Summary) | plainify }},
|
||
|
"image": {
|
||
|
"@type": "ImageObject",
|
||
|
"url": "TODO: fixme"
|
||
|
}
|
||
|
}
|
||
|
</script>
|