From 7127c2a2c65d8af2e18f2ca68328dc03e0465e60 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Tue, 21 May 2024 19:34:04 +0300 Subject: [PATCH] Fix(phd.py): Fix href to root --- phd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phd.py b/phd.py index 4aa206c..0a6a4e5 100644 --- a/phd.py +++ b/phd.py @@ -31,7 +31,7 @@ class phd(Template): if dirs_to_root: root = "../"*dirs_to_root else: - root = '' + root = './' self.root = root path = '/'.join(directories) + '/' + \ self._fileBaseName.replace(".tmpl", ".html") -- 2.39.2