mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
21 lines
491 B
Markdown
21 lines
491 B
Markdown
---
|
|
title: Eq
|
|
description: Reports whether two Page objects are equal.
|
|
categories: []
|
|
keywords: []
|
|
action:
|
|
related: []
|
|
returnType: bool
|
|
signatures: [PAGE1.Eq PAGE2]
|
|
---
|
|
|
|
In this contrived example from a single template, 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 }}
|
|
```
|