public_notes/layouts/_default/section.html

20 lines
431 B
HTML
Raw Normal View History

2021-12-28 05:59:19 +09:00
<!DOCTYPE html>
<html lang="en">
{{ partial "head.html" . }}
<body>
{{partial "search.html" .}}
<div class="singlePage">
<!-- Begin actual content -->
2022-07-14 06:32:32 +09:00
{{partial "header.html" .}}
2021-12-28 05:59:19 +09:00
<article>
<h1>All {{.Title}}</h1>
{{partial "page-list.html" .Paginator.Pages.ByLastmod.Reverse }}
{{ template "_internal/pagination.html" .}}
2021-12-28 05:59:19 +09:00
</article>
{{partial "contact.html" .}}
</div>
</body>
</html>