Welcome to mirror list, hosted at ThFree Co, Russian Federation.

seo_schema.html « partials « layouts - github.com/spech66/bootstrap-bp-hugo-startpage.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 289464209af189ac4e1424010f41642aaa092a6c (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
27
28
<script type="application/ld+json">
    {
        "@context": "http://schema.org",
        "@type": "BlogPosting",
        "mainEntityOfPage": {
             "@type": "WebPage",
             "@id": "{{ .Site.BaseURL }}"
        },
        "articleSection": "{{ .Section }}",
        "name": "{{ .Title }}",
        "headline": "{{ .Title }}",
        "description": "{{ with .Description }}{{ . }}{{ else }}{{ .Site.Params.description }}{{ end }}",
        "inLanguage": "{{ .Lang }}",
        "author": "{{ range .Site.Author }}{{ . }}{{ end }}",
        "creator": "{{ range .Site.Author }}{{ . }}{{ end }}",
        "publisher": "{{ range .Site.Author }}{{ . }}{{ end }}",
        "accountablePerson": "{{ range .Site.Author }}{{ . }}{{ end }}",
        "copyrightHolder": "{{ range .Site.Author }}{{ . }}{{ end }}",
        "copyrightYear": "{{ .Date.Format "2006" }}",
        "datePublished": "{{ .Date.UTC.Format "2006-01-02T15:04:05Z" | safeHTML }}",
        {{ with .Lastmod -}}
        "dateModified": "{{ .UTC.Format "2006-01-02T15:04:05Z" | safeHTML }}",
        {{- end }}
        "url" : "{{ .RelPermalink }}",
        "wordCount" : "{{ .WordCount }}",
        "keywords" : [ {{ if isset .Params "tags" }}{{ range .Params.tags }}"{{ . }}",{{ end }}{{ end }}"Blog" ]
    }
</script>