{{define "layout.html"}} {{.Title}}
{{if .User}}{{template "nav" .}}{{end}} {{template "content" .}}
{{end}} {{/* nav is the panel's navigation bar. It is rendered here, from the layout, so every authenticated page has it without the page's own template having to remember to include it; .Active names the current page so it is highlighted instead of linking to itself. Unauthenticated pages (login, setup) carry no .User and get no nav. */}} {{define "nav"}} {{end}}