{{ define "main" }} {{ partial "primary_top.html" . }} {{ $found := false }} {{ $current := .}} {{ range $msg := .Site.Data.analysis.messages }} {{ if eq $msg.name $current.Page.Title }} {{ $found = true}}
{{ end }} {{ end }} {{ if not $found }} {{ errorf "Could not find analysis message for %s" .Page.Title }} {{ end }} {{ .Content }} {{ partial "primary_bottom.html" . }} {{ end }}