mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-14 16:49:35 -04:00
508 B
508 B
title | description | categories | keywords | params | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Eq | Reports whether two Page objects are equal. |
|
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 }}