website/layouts/partials/findFirstInNextSection.html
ROOMrepair 4fe8d32f2a fix: fix pagination in some unrendered index pages
Signed-off-by: ROOMrepair <twekjz@gmail.com>
2024-11-12 21:02:41 +08:00

13 lines
390 B
HTML

{{ if ne .Parent.CurrentSection .Parent.FirstSection }} <!-- out of boundary -->
{{ with .}}
{{ if eq .Params._build.render false }}
{{ partial "findFirstInNextSection" (index .Pages 0)}}
{{ else }}
<a class="next" href="{{.RelPermalink}}">
{{ i18n "Next" }}
<span>: {{.LinkTitle}}</span>
<img src="/images/docs/v3.3/next.svg" alt="{{ i18n " Next" }}">
</a>
{{ end }}
{{ end }}
{{ end }}