update configuration and README for incorporeal-cms v2

This commit is contained in:
2025-03-17 10:48:34 -05:00
parent 5d2ae359fd
commit 18d06ba831
4 changed files with 43 additions and 31 deletions

31
config.json Normal file
View File

@@ -0,0 +1,31 @@
{
"DOMAIN_NAME": "orb.moe",
"TITLE_SUFFIX": "The Orb",
"BASE_HOST": "https://orb.moe",
"CONTACT_EMAIL": "bss@orb.moe",
"AUTHOR": {
"name": "Brian S. Stephan",
"email": "bss@orb.moe"
},
"DEFAULT_PAGE_STYLE": "dungeon",
"PAGE_STYLES": {
"dungeon": "/static/css/dungeon.css",
"dark": "/static/css/dark.css",
"light": "/static/css/light.css",
"plain": "/static/css/plain.css"
},
"MARKDOWN_EXTENSIONS": [
"extra", "incorporealcms.mdx.figures", "incorporealcms.mdx.pydot",
"sane_lists", "smarty", "toc", "attr_list", "tables", "pymdownx.tilde"
],
"MARKDOWN_EXTENSION_CONFIGS": {
"'extra": {
"footnotes": {
"UNIQUE_IDS": true
}
},
"toc": {
"toc_depth": "2-5"
}
}
}