You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: exampleSite/content/basics/migration/_index.en.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,12 @@ This document shows you what's new in the latest release. For a detailed list of
18
18
19
19
---
20
20
21
+
## 5.16.0 (2023-05-25)
22
+
23
+
- {{% badge style="info" icon="plus-circle" title=" " %}}New{{% /badge %}} Besides the _tag_[taxonomy]({{% relref "cont/taxonomy" %}}) the theme now also provides the _category_ taxonomy out of the box and shows them in the content footer of each page.
24
+
25
+
---
26
+
21
27
## 5.15.0 (2023-05-25)
22
28
23
29
- {{% badge style="note" title=" " %}}Change{{% /badge %}} The [`tabs` shortcode]({{% relref "shortcodes/tabs" %}}) has changed behavior if you haven't set the `groupid` parameter.
The Relearn theme supports Hugo's default taxonomies *tag* and *category* out of the box.
9
+
10
+
## Configuration
11
+
12
+
Just add tags and/or categories to any page. They can be given as a single string or an array of strings.
13
+
14
+
```toml
15
+
+++
16
+
categories = ["taxonomy", "content"]
17
+
tags = "tutorial"
18
+
title = "Taxonomy"
19
+
+++
20
+
```
21
+
22
+
## Behavior
23
+
24
+
The tags are displayed at the top of the page in alphabetical order.
25
+
26
+
The categories are displayed at the bottom of the page in alphabetical order in the default implementation of the theme but can be customized by providing your own `content-footer.html` partial.
27
+
28
+
Each item is a link to a taxonomy page displaying all the articles with the given term.
29
+
30
+
## List all the tags
31
+
32
+
In the `config.toml` file you can add a shortcut to display all the tags and categories
0 commit comments