{{ if .Site.IsServer }}
Hugo Variables for the current page.
Variable Value
.Name {{ printf "%#v" .Name }}
.Title {{ printf "%#v" .Title }}
.Lang {{ printf "%#v" .Lang }}
.Kind {{ printf "%#v" .Kind }}
.Type {{ printf "%#v" .Type }}
.IsPage {{ printf "%#v" .IsPage }}
.IsHome {{ printf "%#v" .IsHome }}
.Next {{ printf "%v" .Next }}
.Prev {{ printf "%v" .Prev }}
.Params {{ range $k,$v := .Params }} {{ end }}
{{ printf "%#v:" $k }} {{ printf "%#v" $v }}
.Section {{ printf "%#v" .Section }}
.CurrentSection {{ printf "%v" .CurrentSection }}
.Pages {{ printf "%v" .Pages }} {{- range $k,$v := .Pages }} {{ end -}}
{{ printf "%#v:" $k }} {{ printf "%v" $v }}
.Resources {{ printf "%v" .Resources }}
.File {{ if .File }}{{ printf "%v" .File }}{{ else}}""{{ end }}
.File.Dir {{ if .File }}{{ printf "%#v" .File.Dir }}{{ else}}""{{ end }}
.File.UniqueID {{ if .File }}{{ printf "%#v" .File.UniqueID }}{{ else}}""{{ end }}
{{ end }}