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