{"id":48792023,"url":"https://github.com/brunexgeek/sphinx_corpo_theme","last_synced_at":"2026-04-13T20:32:57.795Z","repository":{"id":322473926,"uuid":"1069891268","full_name":"brunexgeek/sphinx_corpo_theme","owner":"brunexgeek","description":"A Sphinx theme with a modern corporate aesthetic.","archived":false,"fork":false,"pushed_at":"2025-12-24T17:13:57.000Z","size":598,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-12-26T07:46:38.103Z","etag":null,"topics":["blog","documentation","python","sphinx-doc","theme"],"latest_commit_sha":null,"homepage":"","language":"SCSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/brunexgeek.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-04T20:33:39.000Z","updated_at":"2025-12-24T17:09:49.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/brunexgeek/sphinx_corpo_theme","commit_stats":null,"previous_names":["brunexgeek/sphinx_corpo_theme"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/brunexgeek/sphinx_corpo_theme","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brunexgeek%2Fsphinx_corpo_theme","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brunexgeek%2Fsphinx_corpo_theme/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brunexgeek%2Fsphinx_corpo_theme/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brunexgeek%2Fsphinx_corpo_theme/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/brunexgeek","download_url":"https://codeload.github.com/brunexgeek/sphinx_corpo_theme/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brunexgeek%2Fsphinx_corpo_theme/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31770720,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T20:17:16.280Z","status":"ssl_error","status_checked_at":"2026-04-13T20:17:08.216Z","response_time":93,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["blog","documentation","python","sphinx-doc","theme"],"created_at":"2026-04-13T20:32:56.876Z","updated_at":"2026-04-13T20:32:57.778Z","avatar_url":"https://github.com/brunexgeek.png","language":"SCSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# sphinx_corpo_theme\n\nA Sphinx theme with a modern corporate aesthetic, including templates for conventional documentation and blog posts. The design is inspired by the [IBM documentation](https://www.ibm.com/docs/en/zos/3.2.0) as of October 2025.\n\n![Theme screenshot](example/screenshot.webp)\n\n\u003e [!NOTE]\n\u003e While this theme covers almost all essential functionality, it remains a work in progress and will continue to evolve.\n\n## Theme options\n\nThe theme supports the following options to be used in the `html_theme_options` variable of your `conf.py`.\n\n### template_overrides\n\nEnables overriding the default template for all documents within a specified directory hierarchy. Unlike Sphinx’s `html_additional_pages`, which targets individual files, this option applies to directories.\n\n```python\n# uses 'blog.html' template for documents in 'blog' directory\n'template_overrides' : {\n    'blog/' : 'blog.html',\n}\n```\n\n### show_menu_bar\n\nShow the menu bar at the top of each page. This bar is costumizable and have the company logo, website name and a menu. The default value is `False`.\n\n### menu_bar_items\n\nList of entries to be show in the menu bar. Each entry is a `dict` with the following fields:\n\n* `title`: text to label the menu entry;\n* `docname`: optional reference to a document in the TOC tree;\n* `url`: optional URL.\n\nIf `docname` is specified, the theme will use the relative path to that document. Otherwise, the `url` will be used.\n\n```python\n'menu_bar_items': [\n    {'title': 'Documentation', 'docname': 'docs/index'},\n    {'title': 'Blog', 'docname': 'blog/index'}\n    {'title': 'Products', 'url': 'https://example.com/products/'}\n]\n```\n\n### show_child_topics\n\nIf `True`, a list of child topics will be displayed after the document content for each page that do not have a visible `toctree` (i.e., including `:hidden:`). The default value is `False`.\n\n### show_parent_topic\n\nIf `True`, a link to the parent topic will be displayed after the document content. The default value is `False`.\n\n### toc_extra_links\n\nList of entries to be shown at the bottom of the global TOC, in the side bar. Useful to provide external but related links. Each entry is a `dict` with the following fields:\n\n* `title`: text to label the menu entry;\n* `url`: destination URL.\n\nExtra links use the target `_blank` so will open in another tab/window.\n\n```python\n'toc_extra_links': [\n    {\n        'title': 'Astronomy in Wikipedia',\n        'url': 'https://en.wikipedia.org/wiki/Astronomy'\n    },\n    {\n        'title': 'NASA website',\n        'url': 'https://www.nasa.gov/'\n    }\n]\n```\n\n### footer_statement\n\nOptional text displayed at the bottom of each page, typically used for legal disclaimers or general information. Copyright details appear aligned to the right of this content.\n\n```python\nfooter_statement = \"Wikipedia is hosted by the Wikimedia Foundation, a non-profit organization that also hosts a range of other projects. \"\n```\n\n### debug_layout\n\nIf `true`, shows a floating element with the name of the layout used to render the page.\n\n```python\ndebug_layout = True\n```\n\n## Metadata\n\nThe following [metadata fields](https://www.sphinx-doc.org/en/master/usage/restructuredtext/field-lists.html#file-wide-metadata) can be added to any RST document:\n\n|Field|Description|\n|-----|-----------|\n|`:template:`|Override the template for the current document. This have precedence over `template_overrides`.|\n|`:author:`|Name of the author of the document, only visible for blog posts. This value is injected as `meta` tag in the output HTML.|\n|`:subtitle:`|Text to be shown below the blog title.|\n|`:description:`|Short description of the content, only visible for blog posts. This value is injected as `meta` tag in the output HTML.|\n|`:last_updated:`|Date the document was last updated. If omitted, the date the HTML was generated will be used.|\n|`:title_image:`|Set the background image for a blog post header. The path is relative to the root of documentation. |\n|`:show_child_topics:`|Same as configuration option `show_child_topics`, but for the current page. |\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrunexgeek%2Fsphinx_corpo_theme","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrunexgeek%2Fsphinx_corpo_theme","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrunexgeek%2Fsphinx_corpo_theme/lists"}