17 lines
426 B
HTML
17 lines
426 B
HTML
{{ template "_style.html" .}}
|
|
{{ template "_header.html" .}}
|
|
|
|
|
|
{{ template "_content_start.html" .}}
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
{{ if not .Page.DatePublished.IsZero }}
|
|
<p class="header-caption">Published on <time datetime="{{ .Page.DatePublished.Format `2006-01-02` }}">{{ .Page.DatePublished.Format `January 2, 2006` }}</time></p>
|
|
<p>
|
|
{{ end }}
|
|
|
|
{{ .Content }}
|
|
{{ template "_content_end.html" .}}
|
|
|
|
|
|
{{ template "_footer.html" .}} |