feat: add "head" block

This commit is contained in:
Jimmy Cai 2020-09-26 23:00:48 +02:00
parent 6e48765d82
commit c19780280e
No known key found for this signature in database
GPG Key ID: 3EA408E527F37B18
2 changed files with 22 additions and 21 deletions

View File

@ -1,6 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}"> <html lang="{{ .Site.LanguageCode }}">
<head>
{{- partial "head/head.html" . -}} {{- partial "head/head.html" . -}}
{{- block "head" . -}}{{ end }}
</head>
<body class="{{ block `body-class` . }}{{ end }}"> <body class="{{ block `body-class` . }}{{ end }}">
<div class="container flex on-phone--column align-items--flex-start {{ if .Site.Params.widgets.enabled }}extended{{ else }}compact{{ end }} {{ block `container-class` . }}{{end}}"> <div class="container flex on-phone--column align-items--flex-start {{ if .Site.Params.widgets.enabled }}extended{{ else }}compact{{ end }} {{ block `container-class` . }}{{end}}">
{{ partial "sidebar/left.html" . }} {{ partial "sidebar/left.html" . }}

View File

@ -1,4 +1,3 @@
<head>
<meta charset='utf-8'> <meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'> <meta name='viewport' content='width=device-width, initial-scale=1'>
@ -19,4 +18,3 @@
{{- end -}} {{- end -}}
{{- partial "head/custom.html" . -}} {{- partial "head/custom.html" . -}}
</head>