Eq
Syntax
PAGE1.Eq PAGE2
Returns
bool
In this contrived example from a single page template, we list all pages in the current section except for the current page.
{{ $currentPage := . }}
{{ range .CurrentSection.Pages }}
{{ if not (.Eq $currentPage) }}
<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
{{ end }}
{{ end }}