21 lines
471 B
HTML
Raw Normal View History

2021-10-26 12:43:55 -07:00
<!DOCTYPE html>
2022-02-15 17:12:08 -05:00
<html lang="{{ .Lang }}">
2021-10-26 12:43:55 -07:00
{{ partial "head.html" . }}
2021-07-18 11:54:00 -04:00
2021-10-26 12:43:55 -07:00
<body>
{{partial "search.html" .}}
<div class="singlePage">
<!-- Begin actual content -->
2022-07-13 14:32:32 -07:00
{{partial "header.html" .}}
2021-10-26 12:43:55 -07:00
<article>
2022-05-03 08:47:42 -07:00
{{partial "toc.html" .}}
2022-04-02 20:06:31 -07:00
{{partial "textprocessing.html" . }}
2022-05-23 22:25:13 -07:00
{{if $.Site.Data.config.enableRecentNotes}}
{{partial "recent.html" . }}
{{end}}
2021-10-26 12:43:55 -07:00
</article>
{{partial "footerIndex.html" .}}
2021-07-18 11:54:00 -04:00
</div>
2021-10-26 12:43:55 -07:00
</body>
</html>