{{ define "main" }} {{ $singular_term := .Data.Singular }} {{ $plural_term := .Data.Plural }} {{ partial "header_image.html" . }} {{ with .Content }}

Content

{{ . }} {{ end }} {{ if .Param .Type }} {{ errorf "You cannot have a taxonomyTerm Kind page of Type '%s' have the same taxonomy set in its front-matter. Hugo will infloop (because of the way the debugprint partial works)!!\n e.g. do not set 'tags' for a 'tags' taxonomyTerm page!" .Type }} {{ end }} {{ with .Resources }}

Resources

{{ end }}

Archive of posts, by {{ $singular_term }}

{{ if (not ($.Param "disable_debug")) }}

Page (Debug)

{{ partial "debugprint.html" . }}

File Object (Debug)

{{ partial "debugprint.html" .File }}

Ordered Taxonomy (Debug)

{{ partial "debugprint.html" .Data.Terms.Alphabetical }} {{ end }} {{ end }}