blob: 5c2c98d6b233932d934baab0ebad96ea3bd7ea64 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
---
title: Title
description: Returns the title of the given page.
categories: []
keywords: []
action:
related:
- methods/page/LinkTitle
returnType: string
signatures: [PAGE.Title]
---
With pages backed by a file, the `Title` method returns the `title` field as defined in front matter:
{{< code-toggle file=content/about.md fm=true >}}
title = 'About us'
{{< /code-toggle >}}
```go-html-template
{{ .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:
{{< code-toggle file=hugo >}}
capitalizeListTitles = false
pluralizeListTitles = false
{{< /code-toggle >}}
You can change the capitalization style in your site configuration to one of `ap`, `chicago`, `go`, `firstupper`, or `none`. For example:
{{< code-toggle file=hugo >}}
titleCaseStyle = "firstupper"
{{< /code-toggle >}}
See [details].
[`capitalizeListTitles`]: /getting-started/configuration/#capitalizelisttitles
[`pluralizeListTitles`]: /getting-started/configuration/#pluralizelisttitles
[details]: /getting-started/configuration/#configure-title-case
|