Welcome to mirror list, hosted at ThFree Co, Russian Federation.

usage.md « taxonomies « content « docs - github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 49ac2b06fa75151cc84639f4a0c0cecccb4f05b9 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
title: "Using Taxonomies"
linktitle: "Usage"
date: "2014-05-26"
weight: 15
menu:
  main:
    parent: 'taxonomy'
prev: "/taxonomies/overview"
next: "/taxonomies/displaying"
---

## Defining taxonomies for a site

Taxonomies must be defined in the site configuration, before they can be
used throughout the site. You need to provide both the plural and
singular labels for each taxonomy.

Here is an example configuration in YAML that specifies two taxonomies.

Notice the format is **singular key** : *plural value*. 
### config.yaml

    ---
    taxonomies:
        tag: "tags"
        category: "categories"
        series: "series"
    ---

## Assigning taxonomy values to content

Once an taxonomy is defined at the site level, any piece of content
can be assigned to it regardless of content type or section.

Assigning content to an taxonomy is done in the front matter.
Simply create a variable with the *plural* name of the taxonomy
and assign all terms you want to apply to this content.

**taxonomy values are case insensitive**

### Front Matter Example (in JSON)

    {
        "title": "Hugo: A fast and flexible static site generator",
        "tags": [
            "Development",
            "Go",
            "fast",
            "Blogging"
        ],
        "categories" : [
            "Development"
        ],
        "series" : [
            "Go Web Dev"
        ],
        "slug": "hugo",
        "project_url": "http://github.com/spf13/hugo"
    }