HUGO
News Docs Themes Community GitHub

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