etch/layouts/_default/single.html
2020-05-15 11:15:59 -07:00

12 lines
268 B
HTML

{{ define "main" }}
<article>
<header id="post-header">
<h1>{{ .Title }}</h1>
{{- if isset .Params "date" -}}
<time>{{ .Date.Format "January 2, 2006" }}</time>
{{- end -}}
</header>
{{- .Content -}}
</article>
{{ end }}