From 648fa2336c9b6439927e97e42180feebb93db821 Mon Sep 17 00:00:00 2001 From: phanes Date: Sat, 29 Apr 2023 22:24:25 -0400 Subject: [PATCH] update to footer --- content/site.ini | 1 + src/Config.py | 1 + 2 files changed, 2 insertions(+) diff --git a/content/site.ini b/content/site.ini index 4c1b113..2bc774a 100644 --- a/content/site.ini +++ b/content/site.ini @@ -2,3 +2,4 @@ logo = rsrc/logo.png title = Dark Horse Linux Project landing = products/dark-horse-linux +owner = SILO GROUP, LLC \ No newline at end of file diff --git a/src/Config.py b/src/Config.py index 3c9a485..74dffd2 100644 --- a/src/Config.py +++ b/src/Config.py @@ -13,6 +13,7 @@ class Site: self.logo_path = self._site_parser.get('main', 'logo') self.title = self._site_parser.get( 'main', 'title') self.landing = self._site_parser.get( 'main', 'landing') + self.owner = self._site_parser.get('main', 'owner') # paths can be provided as relative paths or absolute paths