web-personal/themes/marcriera/layouts/_default/single.html

12 lines
278 B
HTML
Raw Normal View History

2019-03-21 00:00:20 +01:00
{{ partial "header.html" . }}
<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>
{{ partial "footer.html" . }}