hugo/docs/content/en/methods/page/Keywords.md
Bjørn Erik Pedersen 5fd1e74903
Merge commit '9b0050e9aabe4be65c78ccf292a348f309d50ccd' as 'docs'
```
git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash
```

Closes #11925
2024-01-27 10:48:57 +01:00

992 B

title description categories keywords action
Keywords Returns a slice of keywords as defined in front matter.
related returnType signatures
[]string
PAGE.Keywords

By default, Hugo evaluates the keywords when creating collections of related content.

{{< code-toggle file=content/recipes/sushi.md fm=true >}} title = 'How to make spicy tuna hand rolls' keywords = ['tuna','sriracha','nori','rice'] {{< /code-toggle >}}

To list the keywords within a template:

{{ range .Keywords }}
  {{ . }}
{{ end }}

Or use the delimit function:

{{ delimit .Keywords ", " ", and " }} → tuna, sriracha, nori, and rice

Keywords are also a useful taxonomy:

{{< code-toggle file=hugo >}} [taxonomies] tag = 'tags' keyword = 'keywords' category = 'categories' {{< /code-toggle >}}