Theme Structure and Layout#
This section describes some basic ways to control the layout and structure of your documentation. This theme inherits its structure and section terminology from the Sphinx Basic NG theme.
Overview of theme layout#
Below is a brief overview of the major layout of this theme.
Take a look at the diagram to understand what the major sections are called.
Where you can insert component templates in html_theme_options, we include the variable name in inline code.
Click on section titles to learn more about them and some basic layout configuration.
article_header_start
article_header_end
Article Content
article_footer_items
Horizontal spacing#
By default the theme’s three columns have fixed widths.
The primary sidebar will snap to the left, the secondary sidebar will snap to the right, and the article content will be centered in between.
If one of the sidebars is not present, then the
article contentwill be centered between the other sidebar and the side of the page.If neither sidebar is present, the
article contentwill be in the middle of the page.
If you’d like the article content to take up more width than its default, use the max-width and flex-grow CSS variables with the .bd-content selector.
For example, to make the content grow to fit all available width, add a custom CSS rule like:
.bd-content {
flex-grow: 1;
max-width: 100%;
}
Templates and components#
There are a few major theme sections that you can customize to add/remove components, or add your own components. Each section is configured with a list of html templates — these are snippets of HTML that are inserted into the section by Sphinx.
You can choose which templates show up in each section, as well as the order in which they appear. This page describes the major areas that you can customize.
Note
When configuring templates in each section, you may omit the .html
suffix after each template if you wish.
Article Header#
Located in sections/header-article.html.
The article header is a narrow bar just above the article’s content. There are two sub-sections that can have component templates added to them:
article_header_startis aligned to the beginning (left) of the article header. By default, this section has thebreadcrumbs.htmlcomponent which displays links to parent pages of the current page.article_header_endis aligned to the end (right) of the article header. By default, this section is empty.
Built-in components to insert into sections#
Below is a list of built-in templates that you can insert into any section. Note that some of them may have CSS rules that assume a specific section (and will be named accordingly).
breadcrumbs.htmlcopyright.htmledit-this-page.htmlfooter-article/prev-next.htmlicon-links.htmllast-updated.htmlnavbar-icon-links.htmlnavbar-logo.htmlnavbar-nav.htmlpage-toc.htmlsearchbox.htmlsearch-button.htmlsearch-field.htmlsidebar-ethical-ads.htmlsidebar-nav-bs.htmlsourcelink.htmlsphinx-version.htmltheme-switcher.htmlversion-switcher.htmlindices.htmltheme-version.html
Add your own HTML templates to theme sections#
If you’d like to add your own custom template to any of these sections, you could do so with the following steps:
Create an HTML file in a folder called
_templates. For example, if you wanted to display the version of your documentation using a Jinja template, you could create a file:_templates/version.htmland put the following in it:<!-- This will display the version of the docs --> {{ version }}Now add the file to your menu items for one of the sections above. For example:
html_theme_options = { ... "navbar_start": ["navbar-logo", "version"], ... }