Import theme
This commit is contained in:
parent
51769fa6be
commit
c59ffbfeee
127 changed files with 13611 additions and 1 deletions
127
layouts/partials/schema.html
Normal file
127
layouts/partials/schema.html
Normal file
|
|
@ -0,0 +1,127 @@
|
|||
{{ if .IsHome -}}
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "http://schema.org",
|
||||
"@type": "WebSite",
|
||||
"name": {{ .Site.Title | jsonify | safeJS }},
|
||||
"url": "{{ .Site.BaseURL }}",
|
||||
"description": "{{ .Site.Params.description }}",
|
||||
"thumbnailUrl": "{{ .Site.Params.Logo | absURL }}",
|
||||
"license": "{{ .Site.Params.license}}"
|
||||
{{ with .Site.Params.copyright }}
|
||||
{{ $copyright := replace . "{{ YEAR }}" (now.Format "2006") }}
|
||||
,"copyrightYear": "{{ index (findRE `^\d{4}` $copyright 1) 0 }}"
|
||||
{{ end }}
|
||||
}
|
||||
</script>
|
||||
{{ else if .IsPage }}
|
||||
{{ $author := or (.Params.author) (.Site.Params.author) }}
|
||||
{{ $favicon := .Site.Params.favicon | absURL }}
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "http://schema.org",
|
||||
"@type": "BlogPosting",
|
||||
"articleSection": "{{ .Section }}",
|
||||
"name": "{{ .Title | safeJS }}",
|
||||
"headline": "{{ .Title | safeJS }}",
|
||||
"alternativeHeadline": "{{ .Params.lead }}",
|
||||
"description": "{{ if .Description }}
|
||||
{{ .Description | safeJS }}
|
||||
|
||||
|
||||
{{ else }}
|
||||
{{ if .IsPage }}
|
||||
{{ .Summary }}
|
||||
|
||||
|
||||
{{ end }}
|
||||
|
||||
|
||||
{{ end }}",
|
||||
"license": "{{ .Site.Params.license}}",
|
||||
{{ with .Site.Params.copyright }}
|
||||
{{ $copyright := replace . "{{ YEAR }}" (now.Format "2006") }}
|
||||
"copyrightYear": "{{ index (findRE `^\d{4}` $copyright 1) 0 }}",
|
||||
{{ end }}
|
||||
"inLanguage": {{ .Site.LanguageCode | default "en-us" }},
|
||||
"isFamilyFriendly": "true",
|
||||
"mainEntityOfPage": {
|
||||
"@type": "WebPage",
|
||||
"@id": "{{ .Permalink }}"
|
||||
},
|
||||
"author" : {
|
||||
"@type": "Person",
|
||||
"name": "{{ $author }}"
|
||||
},
|
||||
"creator" : {
|
||||
"@type": "Person",
|
||||
"name": "{{ $author }}"
|
||||
},
|
||||
"accountablePerson" : {
|
||||
"@type": "Person",
|
||||
"name": "{{ $author }}"
|
||||
},
|
||||
"copyrightHolder" : {
|
||||
"@type": "Person",
|
||||
"name": "{{ $author }}"
|
||||
},
|
||||
"dateCreated": "{{ .Date.Format "2006-01-02T15:04:05.00Z" | safeHTML }}",
|
||||
"datePublished": "{{ .PublishDate.Format "2006-01-02T15:04:05.00Z" | safeHTML }}",
|
||||
"dateModified": "{{ .Lastmod.Format "2006-01-02T15:04:05.00Z" | safeHTML }}",
|
||||
"publisher":{
|
||||
"@type":"Organization",
|
||||
"name": {{ $author }},
|
||||
"url": {{ .Site.BaseURL }},
|
||||
"logo": {
|
||||
"@type": "ImageObject",
|
||||
"url": "{{ (printf "%s%s" $favicon "favicon-32x32.png") }}",
|
||||
"width":"32",
|
||||
"height":"32"
|
||||
}
|
||||
},
|
||||
"image": {{ if .Params.images }}
|
||||
[{{ range $i, $e := .Params.images }}
|
||||
{{ if $i }}
|
||||
,
|
||||
|
||||
{{ end }}
|
||||
{{ $e | absURL }}
|
||||
|
||||
|
||||
{{ end }}
|
||||
]
|
||||
|
||||
{{ else }}
|
||||
[{{ range $i, $e := .Site.Params.images }}
|
||||
{{ if $i }}
|
||||
,
|
||||
|
||||
{{ end }}
|
||||
{{ $e | absURL }}
|
||||
|
||||
|
||||
{{ end }}
|
||||
]
|
||||
|
||||
{{ end }},
|
||||
"url" : "{{ .Permalink }}",
|
||||
"wordCount" : "{{ .WordCount }}",
|
||||
"genre" : [ {{ range $index, $tag := .Params.categories }}
|
||||
{{ if $index }}
|
||||
,
|
||||
|
||||
{{ end }}
|
||||
"{{ $tag }}"
|
||||
|
||||
{{ end }}],
|
||||
"keywords" : [ {{ range $index, $keyword := .Params.tags }}
|
||||
{{ if $index }}
|
||||
,
|
||||
|
||||
{{ end }}
|
||||
"{{ $keyword }}"
|
||||
|
||||
{{ end }}]
|
||||
}
|
||||
</script>
|
||||
{{ end }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue