{{ define "main"}} {{ partial "header.html" . }}

Here you'll find {{ len .Pages | lang.FormatNumber 0 }} post{{if gt (len .Pages) 1}}s{{end}} about {{ .Title }}.

{{ $tagKey := .Title | urlize }} {{ with index .Site.Data.wikidata_mappings $tagKey }}
{{ if eq (len .entities) 1 }} {{ $entity := index .entities 0 }}

Same as {{ $entity.id }}, {{ $entity.description }}.

{{ else }}

These posts may refer to:

    {{ range .entities }}
  • {{ .id }} – {{ .description }}
  • {{ end }}
{{ end }}
{{ end }}
{{ $listPageDateFormat := .Site.Params.listPageDateFormat | default "2006"}} {{ range $index, $value := .Pages.GroupByDate $listPageDateFormat }} {{ if (ne $index 0) }}
{{ end }}

{{ .Key }}

{{ range .Pages }}

{{ .Title }}

{{ end }} {{ end }}
{{ end }}