github.com/choria-io/go-choria@v0.28.1-0.20240416190746-b3bf9c7d5a45/docs/themes/hugo-theme-relearn/layouts/partials/pageHelper/next.html (about)

     1  {{- $collection := .collection }}
     2  {{- $item := .item }}
     3  {{- $found := false }}
     4  {{- $result := "" }}
     5  {{- range $collection }}
     6    {{- if $found }}
     7  	  {{- $result = .Page.Page }}
     8  	  {{- break }}
     9    {{- else if eq $item .Page.Page }}
    10  	  {{- $found = true }}
    11    {{- end }}
    12  {{- end }}
    13  {{- return $result }}