etch/layouts/_default/single.html

12 lines
268 B
HTML
Raw Normal View History

2020-05-15 02:48:11 -04:00
{{ define "main" }}
<article>
2020-05-15 03:43:44 -04:00
<header id="post-header">
<h1>{{ .Title }}</h1>
2020-05-15 14:15:59 -04:00
{{- if isset .Params "date" -}}
<time>{{ .Date.Format "January 2, 2006" }}</time>
{{- end -}}
2020-05-15 03:43:44 -04:00
</header>
2020-05-15 02:48:11 -04:00
{{- .Content -}}
</article>
{{ end }}