mirror of
https://git.rtems.org/rtems-docs/
synced 2025-05-16 06:47:50 +08:00

- 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
13 lines
376 B
HTML
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'] %}
|