From 9664c434966bd2b9d1e8eb6923851fd070ee90e0 Mon Sep 17 00:00:00 2001 From: Marc Cataford Date: Sat, 16 Nov 2024 14:34:08 -0500 Subject: [PATCH] refactor: ensure destination root is included in render meta --- blogue/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blogue/build.py b/blogue/build.py index c2fae16..9d67be4 100644 --- a/blogue/build.py +++ b/blogue/build.py @@ -32,7 +32,7 @@ def build_site( site_root = client.get_document_tree("Blog") - site_metadata = {"documents": site_root.list()} + site_metadata = {"root_path": destination_path, "documents": site_root.list()} docs = [site_root]