inkletblot-com-v3/layouts/services/list.html
Solomon Laing c51773bc46
All checks were successful
continuous-integration/drone/push Build is passing
chore: updated paginator to show more than 10 items
2026-01-03 14:53:46 +10:30

14 lines
387 B
HTML

{{ define "main" }}
<main class="services">
{{ if or .Title .Content }} {{ with .Title }}
<h1 class="services__title">{{ . }}</h1>
{{ end }} {{ with .Content }}
<div class="services__content">{{ . }}</div>
{{ end }} {{ end }}
<div class="services__list">
{{ range (.Paginator 1000).Pages }} {{ .Render "summary" }} {{ end }}
</div>
</main>
{{ end }}