aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/content/en/methods/site/Title.md
blob: a357286c1f87a3682fb0c1dae050f82d13b11ccb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
title: Title
description: Returns the title as defined in the site configuration.
categories: []
keywords: []
action:
  related: []
  returnType: string
  signatures: [SITE.Title]
---

Site configuration:

{{< code-toggle file=hugo >}}
title = 'My Documentation Site'
{{< /code-toggle >}}

Template:

```go-html-template
{{ .Site.Title }} → My Documentation Site
```