diff --git a/sites/website.py b/sites/website.py index d99cbf3..8d5104d 100644 --- a/sites/website.py +++ b/sites/website.py @@ -11,6 +11,9 @@ FOOTER="" if os.path.exists("parts/footer.html"): with open("parts/footer.html") as f: FOOTER = f.read() +elif os.path.exists("sites/parts/footer.html"): + with open("sites/parts/footer.html") as f: + FOOTER = f.read() def render(data,db_object): if data == False: