From 7f2fbfcfb4810e1f935aa2571196e88c87e776cc Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Tue, 10 Jan 2023 23:26:13 +0100 Subject: [PATCH] sections/sorted --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index f7a0e3f..9fd4ec1 100755 --- a/build.py +++ b/build.py @@ -45,7 +45,7 @@ def nav(sections, active): def body(sections): html = [] - for section in sections.values(): + for _, section in sorted(sections.items()): html.append(f'
') html.append(section['content']) html.append('
')