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.
18 lines
476 B
HTML
18 lines
476 B
HTML
{{ $pagetitle := .Title | markdownify | plainify | htmlUnescape }}
|
|
{{ $sitetitle := .Site.Title | markdownify | plainify | htmlUnescape }}
|
|
{{ $title := "" }}
|
|
|
|
{{ if and .Title .Site.Title }}
|
|
{{ if .IsHome }}
|
|
{{ $title = $pagetitle }}
|
|
{{ else }}
|
|
{{ $title = printf "%s · %s" $pagetitle $sitetitle }}
|
|
{{ end }}
|
|
{{ else if .Title }}
|
|
{{ $title = $pagetitle }}
|
|
{{ else if .Site.Title }}
|
|
{{ $title = $sitetitle }}
|
|
{{ end }}
|
|
|
|
{{ return $title }}
|