mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
9b0050e9aa
git-subtree-dir: docs git-subtree-split: 5c085a37b297bf12f59efeaae591418ec025c10d
992 B
992 B
title | description | categories | keywords | action | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Keywords | Returns a slice of keywords as defined in front matter. |
|
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 >}}