aboutsummaryrefslogtreecommitdiff
path: root/templates/page.html
blob: 9303b68b7687c398231ca3865a688fc2b8c36777 (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" }}
<div>
  <h1>{{ .Page.Title }}</h1>
  <div>
	{{ .Page.HTML }}
  </div>
</div>
{{ end }}