2025-04-10 13:04:51 +02:00

527 B

title description categories keywords params
Slug Returns the URL slug of the given page as defined in front matter.
functions_and_methods
returnType signatures
string
PAGE.Slug

{{< code-toggle file=content/recipes/spicy-tuna-hand-rolls.md fm=true >}} title = 'How to make spicy tuna hand rolls' slug = 'sushi' {{< /code-toggle >}}

This page will be served from:

https://example.org/recipes/sushi

To get the slug value within a template:

{{ .Slug }} → sushi