etch/layouts/_default/single.html

18 lines
490 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>
2021-04-10 21:54:26 -04:00
<div>
{{- if isset .Params "date" -}}
{{ if eq .Lastmod .Date }}
<time>{{ .Date.Format "January 2, 2006" }}</time>
{{ else }}
Updated <time>{{ .Lastmod.Format "January 2, 2006" }}</time>
{{ end }}
{{- end -}}
</div>
2020-05-15 03:43:44 -04:00
</header>
2020-05-15 02:48:11 -04:00
{{- .Content -}}
</article>
{{ end }}