diff --git a/layouts/tags/list.html b/layouts/tags/list.html index 95853fb..4d734ca 100644 --- a/layouts/tags/list.html +++ b/layouts/tags/list.html @@ -2,9 +2,32 @@ {{ partial "header.html" . }}
- Here you'll find {{ len .Pages | lang.FormatNumber 0 }} posts - about {{ .Title }} . +

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"}} @@ -19,4 +42,4 @@ {{ end }}
-{{ end }} +{{ end }} \ No newline at end of file