etch/layouts/_default/baseof.html
smoreface 0a8754ea11
Fix <html> element does not have a [lang] attribute (#44)
* Fix <html> element does not have a [lang] attribute

Using Site variables as suggested on the lonely 5 month old PR #37 from @jcabak

* Update layouts/_default/baseof.html

Co-authored-by: Lukas Joswiak <lukas@lukasjoswiak.com>

Co-authored-by: Lukas Joswiak <lukas@lukasjoswiak.com>
2022-10-05 22:17:50 -07:00

12 lines
285 B
HTML

<!DOCTYPE html>
<html lang="{{ .Site.Language.Lang }}">
{{- partial "head.html" . -}}
<body>
{{- partial "header.html" . -}}
<main id="content">
{{- block "main" . }}{{- end }}
</main>
{{- partial "footer.html" . -}}
</body>
</html>