etch/layouts/_default/single.html

18 lines
476 B
HTML
Raw Permalink 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>
<div>
{{- if isset .Params "date" -}}
{{ if eq .Lastmod .Date }}
<time>{{ .Date | time.Format (i18n "post.created") }}</time>
{{ else }}
<time>{{ .Lastmod | time.Format (i18n "post.updated") }}</time>
{{ end }}
{{- end -}}
</div>
2020-05-15 03:43:44 -04:00
</header>
2020-05-15 02:48:11 -04:00
{{- .Content -}}
</article>
{{ end }}