15 lines
609 B
HTML
15 lines
609 B
HTML
{{ define "title" }}
|
|
{{- partialCached "head/title.html" ( slice ( printf "“%s”" ( .Page.Title | plainify ) ) .Site.Title ) .Site.Title .Page.Title -}}
|
|
{{ end }}
|
|
|
|
{{ define "main-class" }}--single layouts-blog-single{{ end }}
|
|
|
|
{{ define "main-body-additional" }}
|
|
{{ if fileExists ( path.Join $.Page.File.Dir "appendices.md" ) }}
|
|
{{- partial "single/main-body/appendices.html" ( dict "pc" . "sc" $ ) -}}
|
|
{{ end }}
|
|
|
|
{{ if fileExists ( path.Join $.Page.File.Dir "corrigendum.md" ) }}
|
|
{{- partial "single/main-body/appendices.html" ( dict "pc" . "sc" $ ) -}}
|
|
{{ end }}
|
|
{{ end }}
|