hugo-theme-relearn/layouts/partials/pageHelper/next.html
2023-12-01 01:03:51 +01:00

13 lines
No EOL
297 B
HTML

{{- $collection := .collection }}
{{- $item := .item }}
{{- $found := false }}
{{- $result := "" }}
{{- range $collection }}
{{- if $found }}
{{- $result = .Page.Page }}
{{- break }}
{{- else if eq $item .Page.Page }}
{{- $found = true }}
{{- end }}
{{- end }}
{{- return $result }}