1{{ template "base.html" . }}
 2
 3{{ define "title" }}{{ .Page.Title }}{{ end }}
 4{{ define "description" }}{{ .Page.Summary }}{{ end }}
 5
 6{{ define "content" }}
 7<article>
 8	<div>{{ .Page.HTML }}</div>
 9</article>
10{{ end }}