quartz/layouts/index.html

21 lines
471 B
HTML
Raw Normal View History

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