73f355ceUpdate theme83ff50c2Use example.com in examples71292134Add alias news > release-notes2e15f642Update theme8eef09d2Add Pygments configuration572b9e75Clean up the code shortcode usea1b2fd3bRemove the code fence language codes1473b1d9Remove redundant textb92c2042Update theme8f439c28Edit contributing section in README8bcf8a19Add contributing section to README4c44ee1cFix broken content file2bdc7710Clarify .Data.Pages sorting in lists.md092271c2Use infinitive mood for main titlesb9b8abefUpdate theme to reflect change to home page contentb897b71bChange copy to use sentence casefd675ee5Enable RSS feed for sections060a5e27Correct movie title in taxonomies.md6a5ca96aUpdate displayed site name for Hub22f4b7a4Add example of starting up the local serverd9612cb3Update themea8c3988aUpdate theme4198189dUpdate theme12d6b016Update theme2b1c4197Update themeb6d90a1eFix News release titlescfe751dbAdd some build info to README git-subtree-dir: docs git-subtree-split:73f355ce0d
2.8 KiB
title, linktitle, description, date, publishdate, lastmod, categories, draft, menu, weight, sections_weight, aliases, toc
| title | linktitle | description | date | publishdate | lastmod | categories | draft | menu | weight | sections_weight | aliases | toc | |||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Taxonomy Variables | Taxonomy pages are of type `Page` and have all page-, site-, and list-level variables available to them. However, taxonomy terms templates have additional variables available to their templates. | 2017-02-01 | 2017-02-01 | 2017-02-01 |
|
false |
|
30 | 30 | true |
Taxonomy Terms Page Variables
Taxonomy terms pages are of the type Page and have the following additional variables.
For example, the following fields would be available in layouts/_defaults/terms.html, depending on how you organize your taxonomy templates:
.Data.Singular- The singular name of the taxonomy (e.g.,
tags =>tag`) .Data.Plural- The plural name of the taxonomy (e.g.,
tags => tags) .Data.Pages- The list of pages in the taxonomy
.Data.Terms- The taxonomy itself
.Data.Terms.Alphabetical- The taxonomy terms alphabetized
.Data.Terms.ByCount- The Terms ordered by popularity
Note that .Data.Terms.Alphabetical and .Data.Terms.ByCount can also be reversed:
.Data.Terms.Alphabetical.Reverse.Data.Terms.ByCount.Reverse
Use .Site.Taxonomies Outside of Taxonomy Templates
The .Site.Taxonomies variable holds all the taxonomies defined site-wide. .Site.Taxonomies is a map of the taxonomy name to a list of its values (e.g., `"tags" -> ["tag1", "tag2", "tag3"]``). Each value, though, is not a string but rather a Taxonomy variable.
The .Taxonomy Variable
The .Taxonomy variable, available, for example, as .Site.Taxonomies.tags, contains the list of tags (values) and, for each tag, their corresponding content pages.
Example Usage of .Site.Taxonomies
The following partial template will list all your site's taxonomies, each of their keys, and all the content assigned to each of the keys. For more examples of how to order and render your taxonomies, see Taxonomy Templates.
{{< code file="all-taxonomies-keys-and-pages.html" download="all-taxonomies-keys-and-pages.html" >}}
-
{{ range $taxonomyname, $taxonomy := .Site.Taxonomies }}
- {{ $taxonomyname }}
-
{{ range $key, $value := $taxonomy }}
- {{ $key }}
- {{ .LinkTitle }} {{ end }}
-
{{ range $value.Pages }}
{{ end }}