mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-24 15:28:54 +00:00
491 B
491 B
title, description, categories, keywords, action
| title | description | categories | keywords | action | |||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Eq | Reports whether two Page objects are equal. |
|
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 }}