public_notes/layouts/index.html

21 lines
471 B
HTML
Raw Normal View History

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