HUGO
Menu
GitHub 86675 stars Mastodon

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: January 1, 0001
Improve this page