From 89fa3627891cd925e60fef9db5c8da73c07efe13 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Tue, 10 Jan 2023 23:33:45 +0100 Subject: [PATCH] sections/home --- build.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.py b/build.py index 9fd4ec1..eaa48b8 100755 --- a/build.py +++ b/build.py @@ -78,7 +78,9 @@ def main(): raw_root = os.path.join(root, 'raw') web_root = os.path.join(root, 'web') _, categories, _ = next(os.walk(raw_root)) - sections = {} + sections = { + ' ': {'id': 'home', 'label': '⋅', 'content': str()}, + } for category in categories: section = { 'id': category,