2025-07-07 13:17:48 +02:00

508 B

title description categories keywords params
Eq Reports whether two Page objects are equal.
functions_and_methods
returnType signatures
bool
PAGE1.Eq PAGE2

In this contrived example 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 }}