{{ $class := "usa-table" }}

Page

.Date {{ .Date }}
.Draft {{ .Draft }}
.FuzzyWordCount {{ .FuzzyWordCount }}
.IsHome {{ .IsHome }}
.IsNode {{ .IsNode }}
.IsPage {{ .IsPage }}
.Kind {{ .Kind }}
.Lastmod {{ .Lastmod }}
.NextInSection {{ .NextInSection }}
.OutputFormats
{{ len .OutputFormats }} {{ range .OutputFormats }} {{ .Name }}
{{ end }}
.Pages
{{ .Pages }} {{ range .Pages }} {{ . }}
{{ end }}
.Permalink {{ .Permalink }}
.PrevInSection {{ .PrevInSection }}
.PublishDate {{ .PublishDate }}
.ReadingTime {{ .ReadingTime }}
.RelPermalink {{ .RelPermalink }}
.Title {{ .Title }}
.Type {{ .Type }}
.Weight {{ .Weight }}
.WordCount {{ .WordCount }}

File

.File.Path {{ with .File }}{{ .Path }}{{ end }}
.File.LogicalName {{ with .File }}{{ .LogicalName }}{{ end }}
.File.TranslationBaseName {{ with .File }}{{ .TranslationBaseName }}{{ end }}
.File.ContentBaseName {{ with .File }}{{ .ContentBaseName }}{{ end }}
.File.BaseFileName {{ with .File }}{{ .BaseFileName }}{{ end }}
.File.Ext {{ with .File }}{{ .Ext }}{{ end }}
.File.Lang {{ with .File }}{{ .Lang }}{{ end }}
.File.Dir {{ with .File }}{{ .Dir }}{{ end }}
.File.UniqueID {{ with .File }}{{ .UniqueID }}{{ end }}

Section

.CurrentSection {{ .CurrentSection }}
.FirstSection {{ .FirstSection }}
.Parent {{ .Parent }}
.Section {{ .Section }}
.Sections
{{ .Sections }} {{ range .Sections }} {{ . }}
{{ end }}

Hugo

hugo.Version {{ hugo.Version }}
hugo.BuildDate {{ hugo.BuildDate }}
hugo.CommitHash {{ hugo.CommitHash }}
hugo.Environment {{ hugo.Environment }}

Site

site.BaseURL {{ site.BaseURL }}
site.BuildDrafts {{ site.BuildDrafts }}
site.Home {{ site.Home }}
site.IsMultiLingual {{ site.IsMultiLingual }}
site.IsServer {{ site.IsServer }}
site.Language.Lang {{ site.Language.Lang }}
site.LastChange {{ site.LastChange }}
site.Pages
{{ site.Pages }} {{ range site.Pages }} {{ . }}
{{ end }}
site.RegularPages
{{ site.RegularPages }} {{ range site.RegularPages }} {{ . }}
{{ end }}
site.Sections
{{ site.Sections }} {{ range site.Sections }} {{ . }}
{{ end }}
site.Taxonomies
{{ site.Taxonomies }} {{ range site.Taxonomies }}
{{ len . }} {{ range . }} {{ . }}
{{ end }}
{{ end }}
site.Title {{ site.Title }}

os.Stat

.IsDir {{ with.File }} {{ $path := print "content/" .Path }} {{ (os.Stat $path).IsDir }} {{ end }}
.Mode {{ with.File }} {{ $path := print "content/" .Path }} {{ (os.Stat $path).Mode }} {{ end }}
.ModTime {{ with.File }} {{ $path := print "content/" .Path }} {{ (os.Stat $path).ModTime }} {{ end }}
.Name {{ with.File }} {{ $path := print "content/" .Path }} {{ (os.Stat $path).Name }} {{ end }}
.Size {{ with.File }} {{ $path := print "content/" .Path }} {{ print (os.Stat $path).Size " bytes" }} {{ end }}