Taxonomy
Th' Relearrrn theme supports Hugo’s default taxonomies tag an' category out o' th' box.
Configurat'n
Just add tags and/or categories t' any plank. They can be given as a single str'n or an array o' str'ns.
+++
categories = ["taxonomy", "content"]
tags = "tutorial"
title = "Taxonomy"
+++
Behavior
Th' tags be displayed at th' top o' th' plank 'n alphabetical order.
Th' categories be displayed at th' bottom o' th' plank 'n alphabetical order 'n th' default implementat'n o' th' theme but can be customized by provid'n yer own content-footer.html
partial.
Each item be a link t' a taxonomy plank display'n all th' articles wit' th' given term.
List all th' tags
In th' config.toml
file ye can add a shortcut t' display all th' tags an' categories
[[menu.shortcuts]]
name = "<i class='fas fa-tags'></i> Tags"
url = "/tags"
[[menu.shortcuts]]
name = "<i class='fas fa-list'></i> Categories"
url = "/categories"