holy/layouts/_default/single.html

22 lines
759 B
HTML
Raw Normal View History

2022-04-06 05:31:50 +08:00
{{ define "main" }}
2024-04-13 13:51:53 +02:00
<article class="box:border-box">
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>
2024-04-13 13:46:47 +02:00
{{- if isset .Params "banner" -}}
{{ $image := resources.Get .Params.banner }}
<img class="mt:16" src="{{ $image.RelPermalink }}" width="{{ $image.Width }}">
{{- end -}}
2022-05-10 14:19:12 +08:00
<div class="mt:16 f:fade-60">
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>
2024-04-13 12:31:46 +02:00
{{ end }}