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.
29 lines
727 B
HTML
29 lines
727 B
HTML
{{ $page := . }}
|
|
|
|
{{ $titles := slice ($page.Title | markdownify | plainify | htmlUnescape) }}
|
|
|
|
{{ range .Ancestors }}
|
|
{{ $titles = $titles | append (.Title | markdownify | plainify | htmlUnescape) }}
|
|
{{ end }}
|
|
|
|
{{ $title := delimit $titles " · " }}
|
|
|
|
<head>
|
|
{{ if templates.Exists "partials/paige/head-first.html" }}
|
|
{{ partial "paige/head-first.html" $page }}
|
|
{{ end }}
|
|
|
|
{{ partial "paige/metas.html" $page }}
|
|
|
|
{{ with $title }}
|
|
<title>{{ . }}</title>
|
|
{{ end }}
|
|
|
|
{{ partial "paige/links.html" $page }}
|
|
{{ partial "paige/style.html" $page }}
|
|
|
|
{{ if templates.Exists "partials/paige/head-last.html" }}
|
|
{{ partial "paige/head-last.html" $page }}
|
|
{{ end }}
|
|
</head>
|