mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-15 00:59:49 -04:00
22 lines
508 B
Markdown
22 lines
508 B
Markdown
---
|
|
title: Eq
|
|
description: Reports whether two Page objects are equal.
|
|
categories: []
|
|
keywords: []
|
|
params:
|
|
functions_and_methods:
|
|
returnType: bool
|
|
signatures: [PAGE1.Eq PAGE2]
|
|
---
|
|
|
|
In this contrived example we list all pages in the current section except for the current page.
|
|
|
|
```go-html-template {file="layouts/page.html"}
|
|
{{ $currentPage := . }}
|
|
{{ range .CurrentSection.Pages }}
|
|
{{ if not (.Eq $currentPage) }}
|
|
<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
|
|
{{ end }}
|
|
{{ end }}
|
|
```
|