1
0
Fork 0
hugo/docs/content/en/methods/page/Eq.md

505 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 from a single 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 }}