Taxonomy / Term Pages

Taxonomy Parameter

Front Matter The list of taxonomies is displayed using the children shortcode. By default the output is of type=group but you can overwrite the children parameter in your front matter.

+++
[params]
  [params.children]
    type = 'card'
+++
---
params:
  children:
    type: card
---
{
   "params": {
      "children": {
         "type": "card"
      }
   }
}

For example the Categories taxonomy does not show a grouped list like in the default (see the Tags taxonomy) but some neat cards.

Term Parameter

Front Matter The list of terms is displayed using the children shortcode. You can overwrite the children parameter in your front matter. Use a cascade configuration on your taxonomy page to inherit parameter down to every term page.

+++
[[cascade]]
  [cascade.params]
    [cascade.params.children]
      breadcrumb = false
      description = true
+++
---
cascade:
- params:
    children:
      breadcrumb: false
      description: true
---
{
   "cascade": [
      {
         "params": {
            "children": {
               "breadcrumb": false,
               "description": true
            }
         }
      }
   ]
}

The term pages of the Categories taxonomy do not show their breadcrumbs like in the default but the description of the page.