aboutsummaryrefslogtreecommitdiff
path: root/templates/page.html
blob: 7ee521932d6d6d3c6d73e03464f8170646ba04f7 (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 }}