diff options
| author | Botond Hende <contact@wazul.moe> | 2026-05-01 12:40:06 +0200 |
|---|---|---|
| committer | Botond Hende <contact@wazul.moe> | 2026-05-01 12:40:06 +0200 |
| commit | db2f67bdd0902048a5d3faa9fe46a71c4aaa4bb3 (patch) | |
| tree | aef73c69bf9e5c34e00e6c7329979b3655c6b069 /config.py | |
| parent | 64a4603ec2ca7b77e7331955f8c9edb4d5ae6b87 (diff) | |
root domain content generation wip
Diffstat (limited to 'config.py')
| -rw-r--r-- | config.py | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -7,15 +7,23 @@ class Config: ASSETS_IMPORT_PATH = "/assets" EMAIL = "webmaster@wazul.moe" ASSETS_IMPORT_PATH_STATIC = "https://static.wazul.moe" - MAIN_ROOT_URL = "https://wazul.moe" GIT_ROOT_URL = "https://git.wazul.moe" RSS_FILE_NAME = "feed.xml" TIMEZONE = datetime.timezone(datetime.timedelta(hours=2)) + # MAIN + MAIN_ROOT_URL = "https://wazul.moe" + MAIN_NAME = "Wazul's website" + # BLOG BLOG_ROOT_URL = "https://blog.wazul.moe" BLOG_ASSETS_SOURCE_DIR = os.path.join(__DIR, "blog/assets") - TEMPLATES_SOURCE_DIR = [os.path.join(__DIR, "blog/templates"), os.path.join(__DIR, "comic/templates"), os.path.join(__DIR, "codenames/templates")] + TEMPLATES_SOURCE_DIR = [ + os.path.join(__DIR, "main/templates"), + os.path.join(__DIR, "blog/templates"), + os.path.join(__DIR, "comic/templates"), + os.path.join(__DIR, "codenames/templates"), + ] POST_SOURCE_DIR = os.path.join(__DIR, "blog/posts") BLOG_HOSTNAME = "yggdrasil" |
