{{define "admin_index.html"}}{{template "admin_base.html" .}}{{end}} {{define "title"}}Admin — Posts{{end}} {{define "content"}}

Posts

new post
{{if not .Posts}}

no posts yet

{{else}}
{{range .Posts}}
{{.DisplayTitle}}
{{.Status}} {{.UpdatedAt}}
edit
{{end}}
{{end}} {{end}}