Omphaloskepsis-2/layouts/blog/single.html

16 lines
609 B
HTML
Raw Normal View History

2022-11-10 22:48:02 -07:00
{{ define "title" }}
2025-06-04 17:44:11 +02:00
{{- partialCached "head/title.html" ( slice ( printf "“%s”" ( .Page.Title | plainify ) ) .Site.Title ) .Site.Title .Page.Title -}}
2022-11-10 22:48:02 -07:00
{{ end }}
2023-08-07 18:23:46 -04:00
{{ define "main-class" }}--single layouts-blog-single{{ end }}
2022-11-10 22:48:02 -07:00
2025-06-06 17:01:20 +02:00
{{ define "main-body-additional" }}
{{ if fileExists ( path.Join $.Page.File.Dir "appendices.md" ) }}
2025-05-08 13:48:23 +02:00
{{- partial "single/main-body/appendices.html" ( dict "pc" . "sc" $ ) -}}
{{ end }}
{{ if fileExists ( path.Join $.Page.File.Dir "corrigendum.md" ) }}
2025-05-08 13:48:23 +02:00
{{- partial "single/main-body/appendices.html" ( dict "pc" . "sc" $ ) -}}
{{ end }}
2022-11-10 22:48:02 -07:00
{{ end }}