mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2024-12-19 09:02:18 +01:00
Alan Orth
4a88be4434
I don't understand it, but quoting these values causes Hugo to use escape codes for non-ASCII (?) characters. For example: "description": "A thriving oasis in Jordan\x27s desert is at risk of disappearing." Google's Search Console shows the following error: Unparsable structured data > Bad escape sequence in string We had a similar issue with dates that was fixed in #111 and the solution is the same here.
46 lines
1.3 KiB
HTML
46 lines
1.3 KiB
HTML
{{ define "schema-dot-org" }}
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context": "http://schema.org",
|
|
"@type": "Blog",
|
|
{{- /* Google recommends the headline be no more than 110 characters */}}
|
|
"headline": "{{ substr .Site.Title 0 110 }}",
|
|
"url" : "{{ printf "%s" .Permalink }}",
|
|
"author": {
|
|
"@type": "Person",
|
|
"name": "{{ .Site.Params.author }}"
|
|
},
|
|
{{- $ISO8601 := "2006-01-02T15:04:05-07:00" }}
|
|
{{- if not .Date.IsZero }}
|
|
"dateModified": {{ .Date.Format $ISO8601 }},
|
|
{{- end }}
|
|
{{- /* all of the site's categories/tags, from Hugo's tpl/template_embedded.go */}}
|
|
"keywords": {{ range $plural, $terms := .Site.Taxonomies }}{{ range $term, $val := $terms }}{{ printf "%s," $term }}{{ end }}{{ end }}
|
|
{{- with .Site.Params.description -}}
|
|
,
|
|
"description": {{- . -}}
|
|
{{- end }}
|
|
}
|
|
</script>
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
|
|
{{ $truncate := default true .Site.Params.truncate }}
|
|
{{ $paginator := .Paginate (where .Site.RegularPages "Section" "in" .Site.Params.mainSections) }}
|
|
{{ range $paginator.Pages }}
|
|
{{ if $truncate }}
|
|
{{ .Render "summary" }}
|
|
{{ else }}
|
|
{{ .Render "content" }}
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{ if or (.Paginator.HasPrev) (.Paginator.HasNext) }}
|
|
{{ partial "pagination.html" . }}
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
{{- /* vim: set ts=2 sw=2 et: */}}
|