{{- $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 }}