{{/* What a reader wants to know about a page besides its text: who wrote it and when, its tags, where it belongs, and the way back to the original. The fields are the ones the exporter writes under `params:` (the README beside `content/` lists them all). Only the reader-facing ones are shown; identifiers and counts stay in the front matter for templates of your own. `source_url` goes through html/template's URL escaping, so an address that is not http(s) is neutralised rather than linked. */}} {{- $p := .Params }}

{{- with $p.author }}By {{ . }}{{ end }} {{- /* A container has no date of its own; Hugo gives a section its newest page's, which would read as the wiki's or blog's own. */}} {{- if and (not .Date.IsZero) (or .IsPage (eq .Params.kind "wiki_page")) }} {{- if and (not .Lastmod.IsZero) (ne (.Lastmod.Format "2006-01-02") (.Date.Format "2006-01-02")) }} updated {{- end }} {{- end }}

{{- with .GetTerms "tags" }} {{- end }}
{{- with $p.community }}
Community
{{ . }}
{{ end -}} {{- with $p.contributors }}
Also edited by
{{ delimit . ", " }}
{{ end -}} {{- with $p.flags }}
Status
{{ delimit . ", " }}
{{ end -}} {{- with $p.source_archive }}
From archive
{{ . }}
{{ end -}} {{- with $p.source_url }}
Original
View in Connections
{{ end -}}