mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2025-02-18 17:50:06 +00:00
11 lines
No EOL
430 B
Text
11 lines
No EOL
430 B
Text
{{- $title := partial "pageHelper/title.hugo" . }}
|
|
{{- with .page }}
|
|
{{- if and $title site.Title (not (eq $title site.Title)) }}
|
|
{{- if $.invert }}
|
|
{{- $title = printf "%s %s %s" $title (default "::" site.Params.titleSeparator) site.Title }}
|
|
{{- else }}
|
|
{{- $title = printf "%s %s %s" site.Title (default "::" site.Params.titleSeparator) $title }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- return $title }} |