blob: 2ca4ce125dbe235e1b81a352ba098ebbc1cc8aef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{{ partial "head.html" . }}
<h1>
{{$.Title}}
<small>
<span class="date">{{.Date.Format "January 2, 2006"}}</span>
on
<span class="site"><a href="{{.Site.BaseURL}}">{{.Site.Title}}</a></span>
</small>
</h1>
<main>
<article>
{{.Content}}
</article>
</main>
{{ partial "foot.html" }}
|