hugo_idunn/layouts/_default/baseof.html

20 lines
355 B
HTML
Raw Normal View History

2020-04-27 16:49:21 +02:00
<!DOCTYPE html>
<html lang="fr">
{{- partial "head.html" . -}}
{{ if .Site.Params.colors }}
<style>
:root {
{{ range $key, $val := .Site.Params.colors }}
--{{ $key }}-color: {{ $val }};
{{ end }}
}
</style>
{{ end }}
2020-04-27 16:49:21 +02:00
<body>
{{- partial "header.html" . -}}
{{- block "main" . }}{{- end }}
{{- partial "footer.html" . -}}
2020-04-27 16:49:21 +02:00
</body>
</html>