nixos-config/docs/layouts/_default/baseof.html
Gabriel Arazas 4d24fa51c3
docs/site: create initial version of the layout
It requires simpler modifications than I thought. Pretty interesting.
2023-07-08 19:59:23 +08:00

18 lines
434 B
HTML

<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode | default "en" }}">
<head>
{{- partial "head.html" . -}}
</head>
<body>
<section class="book sidebar">
{{ partial "header.html" . }}
<hr aria-hidden="true">
{{ partialCached "chapters.html" . }}
</section>
<section class="book content">
{{ block "main" . }}{{ end }}
{{- partial "footer.html" . -}}
</section>
</body>
</html>