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

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

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