Chris Johns 5ce8e43506 build: Fix indexing so it works on HTML and PDF.
- Remove all genindex.rst files, these are generated and should not
  exist in our source.
- Fix the HTML templates so the local specialisation works.
- Add a index link to the sidebar for HTML.

Note, there is no TOC entry for the index in the PDF output and I
cannot figure out how to add one.

Closes #3503
2018-08-21 13:47:40 +10:00

13 lines
376 B
HTML

{# Import the theme's layout. #}
{% extends "!layout.html" %}
{% block sidebartitle %}
<a href="https://docs.rtems.org/">RTEMS Documentation Project</a>
{{ super() }}
{% endblock %}
{% block menu %}
{{ super() }}
<a class="reference internal" href="genindex.html">Index</a>
{% endblock %}
{# Custom CSS overrides #}
{% set css_files = ['_static/my-styles.css'] %}