aboutsummaryrefslogtreecommitdiff
path: root/templates/note.html
blob: 4ce21a03fc837ab911cf7fa2d7de6df69f0eedee (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" }}
<article itemtype="http://schema.org/Article">
  <h1 itemtype="headline">{{ .Page.Title }}</h1>
  <p><cap>{{ .Page.Type }}</cap>, {{ .Page.Created.Format "Jan 2, 2006" }}</p>
  <div>
	{{ .Page.HTML }}
  </div>
</div>
{{ end }}