mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
Gabriel Arazas
70cee0c7f3
It's "simpler" because it doesn't use CSS grid but I think CSS grid is simpler though.
18 lines
455 B
HTML
18 lines
455 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode | default "en" }}">
|
|
<head>
|
|
{{- partial "head.html" . -}}
|
|
</head>
|
|
<body>
|
|
<nav class="book sidebar" aria-label="Table of contents">
|
|
{{ partialCached "chapters.html" . }}
|
|
</nav>
|
|
<section class="book content">
|
|
{{ partial "header.html" . }}
|
|
<hr aria-hidden="true">
|
|
{{ block "main" . }}{{ end }}
|
|
{{ partial "footer.html" . }}
|
|
</section>
|
|
</body>
|
|
</html>
|