You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
532 B
HTML
20 lines
532 B
HTML
{{ $page := . }}
|
|
|
|
{{ $pagetitle := $page.Title | markdownify | plainify | htmlUnescape | safeHTML }}
|
|
{{ $result := "" }}
|
|
{{ $sitetitle := site.Title | markdownify | plainify | htmlUnescape | safeHTML }}
|
|
|
|
{{ if and $pagetitle $sitetitle }}
|
|
{{ if .IsHome }}
|
|
{{ $result = $pagetitle }}
|
|
{{ else }}
|
|
{{ $result = printf "%s · %s" $pagetitle $sitetitle }}
|
|
{{ end }}
|
|
{{ else if $pagetitle }}
|
|
{{ $result = $pagetitle }}
|
|
{{ else if $sitetitle }}
|
|
{{ $result = $sitetitle }}
|
|
{{ end }}
|
|
|
|
{{ return $result }}
|