Skip to content

Commit 93b4653

Browse files
committed
change(?): tags taxonomy
1 parent cc45c82 commit 93b4653

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

config.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,12 @@ section = "categories"
7272
url = "/categories/"
7373
weight = 10
7474

75+
[[extra.menu.main]]
76+
name = "Tags"
77+
section = "tags"
78+
url = "/tags/"
79+
weight = 15
80+
7581
[[extra.menu.main]]
7682
name = "References"
7783
section = "references"

content/_index.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,15 @@ title = "Data Management"
2121
content = "There are many ways to <a href='wiki/datastructures'>structure</a>, <a href='wiki/serialization'>serialize</a> and <a href='wiki/compression'>compress</a> voxels, all with their own pros and cons..."
2222
#link = "/wiki/datastructures"
2323

24+
# [[extra.list]]
25+
# title = "Interactivity"
26+
# content = "Want to make voxels interact with each other or have entities roaming around? Then you'll have to deal with physics and things like navigation meshes..."
27+
# #link = "/wiki/interactivity"
28+
2429
[[extra.list]]
25-
title = "Interactivity"
26-
content = "Want to make voxels interact with each other or have entities roaming around? Then you'll have to deal with physics and things like navigation meshes..."
27-
#link = "/wiki/interactivity"
30+
title = "Editors & Tools"
31+
content = "Don't want to waste time writing your own editor & tools?"
32+
link = "/tags/software"
2833

2934
[[extra.list]]
3035
title = "Procedural Generation"

templates/taxonomy_single.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
{% set taxonomy_page = term.pages | filter(attribute="path", value=taxonomy_path) | first %}
88
{% set title = "Pages in " ~ taxonomy_name %}
99
{% set title_addition = "" %}
10+
{% if taxonomy.name == "tags" %}
11+
{% set title = "Pages tagged " ~ taxonomy_name %}
12+
{% endif %}
1013
{% if config.title %}
1114
{% set title_addition = title_separator ~ config.title %}
1215
{% endif %}

0 commit comments

Comments
 (0)