Back to Hugo

Eq

docs/content/en/methods/page/Eq.md

0.161.1316 B
Original Source

In this contrived example we list all pages in the current section except for the current page.

go-html-template
{{ $currentPage := . }}
{{ range .CurrentSection.Pages }}
  {{ if not (.Eq $currentPage) }}
    <a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
  {{ end }}
{{ end }}