18 lines
275 B
HTML
18 lines
275 B
HTML
{{- /*
|
|
Renders the page title.
|
|
|
|
@params . Slice of title sections.
|
|
*/
|
|
-}}
|
|
|
|
<!-- Validation -->
|
|
|
|
{{- if ( not ( ge ( len . ) 1 ) ) -}}
|
|
{{- errorf "No site title received" -}}
|
|
{{- end -}}
|
|
|
|
<!-- Rendering -->
|
|
|
|
<title itemprop="name">
|
|
{{- delimit . " | " -}}
|
|
</title>
|