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>
|
2022-06-01 13:49:27 +01:00
|
|
|
{{partial "footerIndex.html" .}}
|
2021-07-18 11:54:00 -04:00
|
|
|
</div>
|
2021-10-26 12:43:55 -07:00
|
|
|
</body>
|
2021-10-24 23:31:09 -07:00
|
|
|
</html>
|