diff --git a/.gitignore b/.gitignore index a47aa940..18ad77f0 100644 --- a/.gitignore +++ b/.gitignore @@ -14,4 +14,7 @@ venv .DS_Store .DS_STORE -swarms/agents/.DS_Store \ No newline at end of file +swarms/agents/.DS_Store + +_build + diff --git a/DOCS/DEVELOPER_PLAN.md b/DOCS/Corp/DEVELOPER_PLAN.md similarity index 100% rename from DOCS/DEVELOPER_PLAN.md rename to DOCS/Corp/DEVELOPER_PLAN.md diff --git a/DOCS/FLYWHEEL.md b/DOCS/Corp/FLYWHEEL.md similarity index 100% rename from DOCS/FLYWHEEL.md rename to DOCS/Corp/FLYWHEEL.md diff --git a/DOCS/SALES.md b/DOCS/Corp/SALES.md similarity index 100% rename from DOCS/SALES.md rename to DOCS/Corp/SALES.md diff --git a/DOCS/SALESPEOPLE_PLAN.md b/DOCS/Corp/SALESPEOPLE_PLAN.md similarity index 100% rename from DOCS/SALESPEOPLE_PLAN.md rename to DOCS/Corp/SALESPEOPLE_PLAN.md diff --git a/DOCS/conf.py b/DOCS/conf.py index d59de363..7bfb038e 100644 --- a/DOCS/conf.py +++ b/DOCS/conf.py @@ -13,7 +13,25 @@ author = 'Kye Gomez / Agora' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration -extensions = [] +# extensions = [] + +# templates_path = ['_templates'] +# exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] + + + +# -- Options for HTML output ------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output + +# html_theme = 'alabaster' +# html_static_path = ['_static'] + + + + +extensions = [ + 'sphinx_rtd_theme', +] templates_path = ['_templates'] exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] @@ -23,5 +41,23 @@ exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] # -- Options for HTML output ------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output -html_theme = 'alabaster' +html_theme = "sphinx_rtd_theme" html_static_path = ['_static'] +html_theme_path = ["_themes", ] + +html_theme_options = { + 'analytics_id': 'G-XXXXXXXXXX', # Provided by Google in your dashboard + 'analytics_anonymize_ip': False, + 'logo_only': False, + 'display_version': True, + 'prev_next_buttons_location': 'bottom', + 'style_external_links': False, + 'vcs_pageview_mode': '', + 'style_nav_header_background': 'white', + # Toc options + 'collapse_navigation': True, + 'sticky_navigation': True, + 'navigation_depth': 4, + 'includehidden': True, + 'titles_only': False +} \ No newline at end of file