blob: e2ae7d2a5a3c2aa944eb1e8f11e8b295cf16a93e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
---
title: Copyright
description: Returns the copyright notice as defined in the site configuration.
categories: []
keywords: []
action:
related: []
returnType: string
signatures: [SITE.Copyright]
---
Site configuration:
{{< code-toggle file=hugo >}}
copyright = '© 2023 ABC Widgets, Inc.'
{{< /code-toggle >}}
Template:
```go-html-template
{{ .Site.Copyright }} → © 2023 ABC Widgets, Inc.
```
|