mirror of
https://github.com/hyzendust/hyzendust.github.io.git
synced 2026-04-16 05:38:33 +02:00
14 lines
493 B
HTML
14 lines
493 B
HTML
{{ define "main" }}
|
|
{{ $pages := .Pages.ByTitle }}
|
|
{{ $sectionPagerSize := or site.Params.sectionPagerSize 10 }}
|
|
{{ $paginator := .Paginate $pages $sectionPagerSize }}
|
|
{{ .Content }}
|
|
<h1>Services</h1>
|
|
{{ range $index, $page := $paginator.Pages }}
|
|
<h2 class="home-post-title">{{ add $index 1 }}. <a href="{{ $page.RelPermalink }}">{{ $page.LinkTitle }}</a></h2>
|
|
{{ end }}
|
|
<nav class="paginator">
|
|
{{- partial "pagination.html" . }} {{/* embedded template */}}
|
|
</nav>
|
|
{{ end }}
|