rizaldy.club/layouts/index.html

21 lines
471 B
HTML
Raw Normal View History

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