holy/layouts/_default/single.html

17 lines
562 B
HTML
Raw Normal View History

2022-04-06 05:31:50 +08:00
{{ define "main" }}
2022-05-09 18:25:13 +08:00
<article class="box:border-box pt:32">
2022-04-12 01:33:41 +08:00
<header class="mb:32">
2022-04-08 04:15:42 +08:00
<div class="font:40 font:extrabold">{{ .Title }}</div>
2022-05-06 00:33:02 +08:00
<div class="mt:16 f:fade-64">
2022-04-06 05:31:50 +08:00
{{- if isset .Params "date" -}}
{{ if eq .Lastmod .Date }}
2022-04-08 04:15:42 +08:00
<time>{{ .Date | time.Format (":date_medium") }}</time>
2022-04-06 05:31:50 +08:00
{{ else }}
2022-04-08 04:15:42 +08:00
<time>{{ .Lastmod | time.Format (":date_medium") }}</time>
2022-04-06 05:31:50 +08:00
{{ end }}
{{- end -}}
</div>
</header>
2022-04-13 03:01:56 +08:00
{{- partial "prose.html" . -}}
2022-04-06 05:31:50 +08:00
</article>
2022-04-08 04:15:42 +08:00
{{ end }}