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" }}
|
2025-01-27 23:34:33 +01:00
|
|
|
{{ 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" $ ) -}}
|
2025-01-27 23:34:33 +01:00
|
|
|
{{ 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" $ ) -}}
|
2025-01-27 23:34:33 +01:00
|
|
|
{{ end }}
|
2022-11-10 22:48:02 -07:00
|
|
|
{{ end }}
|