| # -- General configuration --------------------------------------------------- | # -- General configuration --------------------------------------------------- | ||||
| extensions = [] | extensions = [] | ||||
| templates_path = ['_templates'] | |||||
| templates_path = ['.'] | |||||
| source_suffix = '.rst' | source_suffix = '.rst' | ||||
| master_doc = 'index' | master_doc = 'index' | ||||
| language = None | language = None | ||||
| pygments_style = None | pygments_style = None | ||||
| # -- Options for HTML output ------------------------------------------------- | # -- Options for HTML output ------------------------------------------------- | ||||
| html_theme = 'nature' | |||||
| html_theme = 'basic' | |||||
| html_theme_options = {} | html_theme_options = {} | ||||
| html_static_path = [] | html_static_path = [] | ||||
| html_sidebars = {} | html_sidebars = {} |
| design | design | ||||
| dev/index | dev/index | ||||
| err/index | err/index | ||||
| Indices and tables | |||||
| ================== | |||||
| * :ref:`genindex` | |||||
| * :ref:`modindex` | |||||
| * :ref:`search` |
| --- | |||||
| title: "{{ title | striptags }}" | |||||
| layout: single | |||||
| {% if not pagename.endswith('index') -%} | |||||
| url: docs/{{pagename}}{{file_suffix}} | |||||
| {%- endif %} | |||||
| --- | |||||
| <div class="toc global"> | |||||
| <div class="toc-content" role="navigation" aria-label="global navigation"> | |||||
| <div class="toc-header">Contents</div> | |||||
| {{ toctree(maxdepth=5, titles_only=True) }} | |||||
| </div> | |||||
| </div> | |||||
| <div class="toc local"> | |||||
| <div class="toc-content" role="navigation" aria-label="local navigation"> | |||||
| <div class="toc-header">On this page</div> | |||||
| {{ toc }} | |||||
| </div> | |||||
| </div> | |||||
| <div class="page-content"> | |||||
| {{ body }} | |||||
| {% if next %} | |||||
| <div class="next-link"> | |||||
| Next: <a href="{{ next.link }}">{{ next.title }}</a> | |||||
| </div> | |||||
| {% endif %} | |||||
| </div> |