hugo-theme-relearn/layouts/partials/_relearn/pageNext.gotmpl

13 lines
300 B
Go Template
Raw Normal View History

{{- $collection := .collection }}
{{- $item := .item }}
{{- $found := false }}
{{- $result := "" }}
{{- range $collection }}
{{- if $found }}
2024-08-28 22:33:11 +00:00
{{- $result = .Page.Page }}
{{- break }}
{{- else if eq $item .Page.Page }}
2024-08-28 22:33:11 +00:00
{{- $found = true }}
{{- end }}
{{- end }}
{{- return $result }}