19 lines
275 B
HTML
19 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>
|