aboutsummaryrefslogtreecommitdiff
path: root/templates/page.html
blob: 90c15df72e1619d4beb5c3c725adb81a726df920 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ template "base.html" . }}

{{ define "title" }}{{ .Page.Title }}{{ end }}
{{ define "description" }}{{ .Page.Summary }}{{ end }}

{{ define "content" }}
<article>
	<hgroup>
		<h1>{{ .Page.Title }}</h1>
	</hgroup>
	<div>{{ .Page.HTML }}</div>
</article>
{{ end }}