13 lines
439 B
HTML
13 lines
439 B
HTML
<head>
|
|
{{ if templates.Exists "partials/paige/head-first.html" }}
|
|
{{ partial "paige/head-first.html" . }}
|
|
{{ end }}
|
|
{{ partial "paige/metas.html" . }}
|
|
<title>{{ partial "paige/func-title.html" . }}</title>
|
|
{{ partial "paige/links.html" . }}
|
|
{{ partial "paige/style.html" . }}
|
|
{{ if templates.Exists "partials/paige/head-last.html" }}
|
|
{{ partial "paige/head-last.html" . }}
|
|
{{ end }}
|
|
</head>
|