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