{{ _('Enter search terms or a module, class or function name.') }}
{%- endif %}
{%- endblock %}
{%- endmacro %}
{%- macro css() %}
{%- for cssfile in css_files %}
{%- endfor %}
{%- endmacro %}
{#
In newer sphinx styles is an array and style does not exist
In older sphinx (1.x) style is the style set in conf.py.
If style exists, assume styles doesn't exist and make styles
exist with style as the only value.
So we can use styles[-1] in the css() macro.
When sourceforge lets me build docs with something newer than sphinx 1,
we can delete this.
#}
{% if style %}
{% set styles = [] %}
{{ styles.append( style ) }}
{% endif %}
{%- if 'name="description"' not in metatags %}
{%- endif %}
{{ metatags }}
{%- if builder != 'htmlhelp' %}
{%- set titlesuffix = " — "|safe + docstitle|e %}
{%- endif %}
{{ title|striptags }}{{ titlesuffix }}
{%- if builder == 'web' %}
{%- for link, type, title in page_links %}
{%- endfor %}
{%- else %}
{{ css() }}
{%- endif %}
{%- if builder != 'htmlhelp' %}
{%- for scriptfile in script_files %}
{%- endfor %}
{%- if use_opensearch %}
{%- endif %}
{%- if favicon %}
{%- endif %}
{%- endif %}
{%- block linktags %}
{%- if hasdoc('about') %}
{%- endif %}
{%- if hasdoc('copyright') %}
{%- endif %}
{%- if parents %}
{%- endif %}
{%- if next %}
{%- endif %}
{%- if prev %}
{%- endif %}
{%- endblock %}
{%- block extrahead %} {% endblock %}