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