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

12 lines
343 B
HTML
Raw Normal View History

2019-03-21 00:00:20 +01:00
{{ partial "header.html" . }}
2019-05-06 00:28:03 +02:00
<main>
{{- if not .Date.IsZero }}
<p class="timestamp">{{ .Date.Format "02-01-2006" }}</p>
{{- end }}
{{ .Content }}
{{- if .Params.tags }}
{{ partial "tags" .Params.tags }}
{{- end }}
</main>
2019-03-21 00:00:20 +01:00
{{ partial "footer.html" . }}