14 lines
407 B
Python
14 lines
407 B
Python
import os
|
|
# Main config section
|
|
class Config:
|
|
MAIN_PAGE_TITLE = "hydrogen site"
|
|
|
|
APP_NAME = "hydrogen"
|
|
APP_DESCRIPTION = "Simplistic static site generator"
|
|
APP_SRC_URL = f"https://git.exocortex.ru/Exocortex/{APP_NAME}"
|
|
OUTPUT_DIR = 'public'
|
|
TEMPLATES_DIR = 'templates'
|
|
CONTENT_DIR = 'content'
|
|
STATIC_DIR = 'static'
|
|
HEADER_IMAGE = 'static/header.jpg'
|
|
THEME = "default" |