blob: d8416df8668ff82262e61d800172a8fcde27cffb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
---
title: Permalink
description: Returns the permalink of the given page.
categories: []
keywords: []
action:
related:
- methods/page/RelPermalink
returnType: string
signatures: [PAGE.Permalink]
---
Site configuration:
{{< code-toggle file=hugo >}}
title = 'Documentation'
baseURL = 'https://example.org/docs/'
{{< /code-toggle >}}
Template:
```go-html-template
{{ $page := .Site.GetPage "/about" }}
{{ $page.Permalink }} → https://example.org/docs/about/
```
|