Files
hugo/docs/content/en/methods/page/RelPermalink.md
T
2026-02-25 10:29:05 +01:00

25 lines
465 B
Markdown

---
title: RelPermalink
description: Returns the relative permalink of the given page.
categories: []
keywords: []
params:
functions_and_methods:
returnType: string
signatures: [PAGE.RelPermalink]
---
Project configuration:
{{< code-toggle file=hugo >}}
title = 'Documentation'
baseURL = 'https://example.org/docs/'
{{< /code-toggle >}}
Template:
```go-html-template
{{ $page := .Site.GetPage "/about" }}
{{ $page.RelPermalink }} → /docs/about/
```