Eq
Reports whether two Page objects are equal.
Syntax
PAGE1.Eq PAGE2
Returns
bool
In this contrived example we list all pages in the current section except for the current page.
layouts/page.html
{{ $currentPage := . }}
{{ range .CurrentSection.Pages }}
{{ if not (.Eq $currentPage) }}
<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
{{ end }}
{{ end }}
Last updated:
June 15, 2025
:
content: Update to align with v0.146.0 template system (phase 1) (0015e7a9b)
Improve this page