aboutsummaryrefslogtreecommitdiff
path: root/templates/note.html
blob: 5289a5e0baae091a1601f31550bdd1b8827b1f12 (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><cap>{{ .Page.Type }}</cap>, {{ .Page.Created.Format "Jan 2, 2006" }}, on <a href="{{ .Config.BaseURL }}">{{ .Config.Title }}'s blog</a></p>
  <div>
	{{ .Page.HTML }}
  </div>
</div>
{{ end }}