Slug
Returns the URL slug of the given page as defined in front matter.
Syntax
PAGE.Slug
Returns
string
---
slug: sushi
title: How to make spicy tuna hand rolls
---
+++
slug = 'sushi'
title = 'How to make spicy tuna hand rolls'
+++
{
"slug": "sushi",
"title": "How to make spicy tuna hand rolls"
}
This page will be served from:
https://example.org/recipes/sushi
To get the slug value within a template:
{{ .Slug }} → sushi
Last updated:
December 4, 2023
:
Squashed 'docs/' changes from 4d936aee6..4dd2d6415 (35dec7c96)
Improve this page