12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- import datetime
- project = "Wagtail CRX"
- copyright = f"2018–{datetime.datetime.now().year}, CodeRed LLC"
- author = "CodeRed LLC"
- extensions = ["sphinx_wagtail_theme"]
- templates_path = ["_templates"]
- source_suffix = ".rst"
- master_doc = "index"
- language = "en"
- exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
- html_theme = "sphinx_wagtail_theme"
- html_theme_options = {
- "project_name": "Wagtail + CodeRed Extensions",
- "github_url": "https://github.com/coderedcorp/coderedcms/blob/main/docs/",
- "footer_links": (
- "Wagtail Hosting by CodeRed|https://www.codered.cloud/,"
- "Wagtail CRX on GitHub|https://github.com/coderedcorp/coderedcms,"
- "About CodeRed|https://www.coderedcorp.com/"
- ),
- }
- html_static_path = ["_static"]
- html_sidebars = {"**": ["searchbox.html", "globaltoc.html", "sponsor.html"]}
- html_css_files = ["custom.css"]
|