roundabout,
created on Saturday, 20 April 2024, 08:42:54 (1713602574),
received on Tuesday, 23 April 2024, 11:54:32 (1713873272)
Author identity: vlad <vlad.muntoiu@gmail.com>
a2a5c3ef6fccaa1c009ba8017e80b6bd2b162d2d
ampoule_ssg/__init__.py
@@ -229,7 +229,7 @@ class Site:
location = location.lstrip("/") # interpret it as site root, not OS root self.pages[location] = page def add_from_index(self, index, location, template, static=False, **kwargs):def add_from_index(self, index, location, template=None, static=False, **kwargs):location = location.lstrip("/") # interpret it as site root, not OS root kwargs = {**self.context, **kwargs} if static:
@@ -246,6 +246,13 @@ class Site:
return decorator def test(self, name): def decorator(func): self.template_engine.tests[name] = func return func return decorator def build(self): # Clear the build directory if it exists. if os.path.isdir(self.build_dir):