5c5e2d59cb
BREAKING CHANGE: We have replaced `gulp` with `webpack` and `npm scripts` to build this theme. If you build it on your own or use build commands during the deployment, you may have to adjust your setup. BREAKING CHANGE: The `GeekblogIcons` font is using the icon name as Unicode now. As a consequence, you have to replace all references to Icons from this font if you have customized the theme. BREAKING CHANGE: We have refactored the search integration to split Hugo templates from JavaScript code. To get it working again, you need to adjust the `outputFormats` and `outputs` in your Hugo configuration file, as [documented](https://geekdocs.de/usage/configuration/#site-configuration).
64 lines
2.3 KiB
HTML
64 lines
2.3 KiB
HTML
{{ if .IsHome -}}
|
|
{{ $thumbnail := default (default "brand.svg" .Site.Params.logo) (index (default slice .Site.Params.images) 0) | absURL }}<script type="application/ld+json">
|
|
{
|
|
"@context": "http://schema.org",
|
|
"@type": "WebSite",
|
|
"name": "{{ .Site.Title }}",
|
|
"url": "{{ .Site.BaseURL }}",
|
|
{{- with .Site.Params.description }}
|
|
"description": "{{ . }}",
|
|
{{- end }}
|
|
"thumbnailUrl": "{{ $thumbnail }}"
|
|
{{- with .Site.Params.GeekdocContentLicense }},
|
|
"license": "{{ .name }}"
|
|
{{- end }}
|
|
}
|
|
</script>
|
|
{{ else if .IsPage }}
|
|
{{ $description := default .Site.Params.description (default .Description .Summary) }}
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context": "http://schema.org",
|
|
"@type": "TechArticle",
|
|
"articleSection": "{{ .Section }}",
|
|
"name": "{{ .Title | safeJS }}",
|
|
"headline": "{{ .Title | safeJS }}",
|
|
"alternativeHeadline": "{{ .Params.lead }}",
|
|
{{- with $description }}
|
|
"description": "{{ . }}",
|
|
{{- end }}
|
|
"inLanguage": {{ .Site.Language.Lang }},
|
|
"isFamilyFriendly": "true",
|
|
"mainEntityOfPage": {
|
|
"@type": "WebPage",
|
|
"@id": "{{ .Permalink }}"
|
|
},
|
|
"copyrightHolder" : "{{ .Site.Title }}",
|
|
"copyrightYear" : "{{ .Date.Format "2006" }}",
|
|
"dateCreated": "{{ .Date.Format "2006-01-02T15:04:05.00Z" | safeJS }}",
|
|
"datePublished": "{{ .PublishDate.Format "2006-01-02T15:04:05.00Z" | safeJS }}",
|
|
"dateModified": "{{ .Lastmod.Format "2006-01-02T15:04:05.00Z" | safeJS }}",
|
|
"publisher":{
|
|
"@type":"Organization",
|
|
"name": {{ .Site.Title }},
|
|
"url": {{ .Site.BaseURL }},
|
|
"logo": {
|
|
"@type": "ImageObject",
|
|
"url": "{{ (default "brand.svg" .Site.Params.logo) | absURL }}",
|
|
"width":"32",
|
|
"height":"32"
|
|
}
|
|
},
|
|
{{- with $images := $.Resources.ByType "image" }}
|
|
"image": [ {{ range $i, $image := $images }}{{ if $i }}, {{ end }}"{{ $image.Permalink | absURL }}" {{ end }}],
|
|
{{- else }}
|
|
{{- with $images := .Params.images }}
|
|
"image": [ {{ range $i, $image := $images }}{{ if $i }}, {{ end }}"{{ $image | absURL }}" {{ end }}],
|
|
{{- end }}
|
|
{{- end }}
|
|
"url" : "{{ .Permalink }}",
|
|
"wordCount" : "{{ .WordCount }}",
|
|
"genre" : [ {{ range $i, $tag := .Params.tags }}{{ if $i }}, {{ end }}"{{ $tag }}" {{ end }}]
|
|
}
|
|
</script>
|
|
{{ end }}
|