2021-09-27 20:47:09 -05:00
|
|
|
{{ partial "credit.html" }}
|
2021-09-25 20:52:01 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
{{- partial "head.html" . -}}
|
|
|
|
|
|
|
|
<body>
|
|
|
|
{{- partial "header.html" . -}}
|
|
|
|
{{ partial "navbar.html" . }}
|
|
|
|
|
2021-09-27 14:16:52 -05:00
|
|
|
<div class="page">
|
2021-09-28 18:36:14 -05:00
|
|
|
{{ if and .Params.Toc .IsPage }}
|
2021-09-25 20:52:01 -05:00
|
|
|
<div class="side">
|
|
|
|
<h3>Table of Contents</h3>
|
|
|
|
{{ .TableOfContents }}
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
|
2021-09-29 21:33:23 -05:00
|
|
|
<div class="content">
|
2021-09-25 20:52:01 -05:00
|
|
|
{{- block "main" . }}
|
|
|
|
{{ .Content }}
|
|
|
|
{{- end }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{- partial "footer.html" . -}}
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|