.. toctree::
:hidden:
:maxdepth: 1
:caption: Main
:name: main-nav
preview
conf
.. toctree::
:hidden:
:maxdepth: 1
:caption: Custom Files
:name: sec-files
/otherpages/singlepage
/otherpages/sidebar
Garri
=========
.. note::
This theme is part of the `themata `_ collection.
Setting up and using the garri theme.
Install the themata package from python index.
.. code:: bash
pip install themata
or equivalent (add `themata` to any appropriate requirements files).
Example
---------
Below is a minimal sample **conf.py** file to use the garri theme.
.. code:: python
import os
import themata
project = 'Garri Doc'
copyright = '2020, Adewale Azeez'
author = 'Adewale Azeez'
html_favicon = 'favicon.png'
html_theme = 'garri'
html_theme_optionss = {
'project_icon': 'favicon.png'
}
Theme Options
--------------
The following theme options are accepted in the theme.
Variable Options
'''''''''''''''''
.. csv-table::
:header: "Option ", "Description"
"project_icon ", "The abolute or relative (to _static folder) path to the image to use as the theme icon. This is not the same as favicon. If the favicon is set using the variable `html_favicon` and the project_icon is not set. The project_icon value will be the value of the favicon."
"toc_title ", "The title of the main toc of the documentation the default is 'Browse'"
"index_is_single ", "This option is to indicate if any **index** page does not have sidebars. It is True by default which means any index page will not have any sidebar. To add sidebars to index pages set the value to False in `html_theme_optionss`."
"sidebar_position ", "The position to render the sidebar either left or right. It is left by default. If the value of has_sidebar is set to False no sidebar is rendered."
"has_sidebar ", "This option is used to determine whether to show the sidebar or not, the default is True."
"no_sidebar ", "An array list of pages name to have no sidebar. Any pagename added to this array will have no sidebar regardless of other sidebar options. E.g.
.. code:: python
html_theme_options = {
'no_sidebar': [
'otherpages/singlepage'
]
}
The name of the page must be relative to the index project root folder. Another way to make a page have no sidebar is to add the extension **.single** to it file name e.g. **test.single.rst**"
"source_root ", "The full link to the web root folder where the source of the documentation source is e.g. the documentation github repo"
"source_root_edit_text ", "The text to show on the button that link to the page source in a repository. The default is '**Edit this page**'"
"metadata