Render a single page of the spec in Hugo

This commit is contained in:
Will 2021-01-12 15:31:01 -08:00
parent 2b32508964
commit 55eae7b70b
No known key found for this signature in database
GPG key ID: 385872BB265E8BF8
23 changed files with 2476 additions and 1 deletions

27
layouts/docs/baseof.html Normal file
View file

@ -0,0 +1,27 @@
<!doctype html>
<html lang="{{ .Site.Language.Lang }}" class="no-js">
<head>
{{ partial "head.html" . }}
</head>
<body class="td-{{ .Kind }}">
<header>
{{ partial "navbar.html" . }}
</header>
<div class="container-fluid td-outer">
<div class="td-main">
<div class="row flex-xl-nowrap">
<div class="col-12 col-md-3 col-xl-3 td-sidebar d-print-none">
{{ partial "sidebar.html" . }}
</div>
<main class="col-12 col-md-9 col-xl-7 pl-md-5" role="main">
{{ partial "version-banner.html" . }}
{{ partial "breadcrumb.html" . }}
{{ block "main" . }}{{ end }}
</main>
</div>
</div>
{{ partial "footer.html" . }}
</div>
{{ partial "scripts.html" . }}
</body>
</html>