summaryrefslogtreecommitdiff
path: root/files/post.html
blob: 28ffad2e62c986d97bd0427c19685968316a1f59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ template "base.html" . }}

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

{{ define "content" }}
<div>
  <h1>{{ .Page.Title }}</h1>
  <p>{{ .Page.Created.Format "Jan 2, 2006" }}</p>
  <div>
	{{ .Page.HTML }}
  </div>
</div>
{{ end }}