Files
hugo/docs/content/en/methods/page/Eq.md
2025-04-10 13:04:51 +02:00

505 B

title, description, categories, keywords, params
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 }}