kozmo-dark/layouts/_default/single.html

12 lines
278 B
HTML
Raw Permalink Normal View History

2018-03-13 21:38:44 +01:00
{{ partial "header.html" . }}
2018-04-08 23:00:39 +02:00
<div id="content">
{{ if not .Date.IsZero }}
<p class="timestamp">{{ .Date.Format "02-01-2006" }}</p>
{{ end }}
{{ .Content }}
{{ if .Params.tags }}
{{ partial "tags" .Params.tags }}
{{ end }}
</div>
2018-03-13 21:38:44 +01:00
{{ partial "footer.html" . }}