10 lines
238 B
HTML
10 lines
238 B
HTML
|
{{ partial "header.html" . }}
|
||
|
{{ if not .Date.IsZero }}
|
||
|
<p class="timestamp">{{ .Date.Format "02-01-2006" }}</p>
|
||
|
{{ end }}
|
||
|
{{ .Content }}
|
||
|
{{ if .Params.tags }}
|
||
|
{{ partial "tags" .Params.tags }}
|
||
|
{{ end }}
|
||
|
{{ partial "footer.html" . }}
|