HUGO
News Docs Themes Community GitHub

Title

Returns the title of the given page.

Syntax

PAGE.Title

Returns

string

With pages backed by a file, the Title method returns the title field as defined in front matter:

---
title: About us
---
+++
title = 'About us'
+++
{
   "title": "About us"
}
{{ .Title }} → About us

With section, taxonomy, and term pages not backed by a file, the Title method returns the section name, capitalized and pluralized. You can disable these transformations by setting capitalizeListTitles and pluralizeListTitles in your site configuration. For example:

capitalizeListTitles: false
pluralizeListTitles: false
capitalizeListTitles = false
pluralizeListTitles = false
{
   "capitalizeListTitles": false,
   "pluralizeListTitles": false
}

You can change the capitalization style in your site configuration to one of ap, chicago, go, firstupper, or none. For example:

titleCaseStyle: firstupper
titleCaseStyle = 'firstupper'
{
   "titleCaseStyle": "firstupper"
}

See  details.


Last updated: January 30, 2025 : Improve glossary (d847892aa)
Improve this page