You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
815 B
22 lines
815 B
8 months ago
|
{#
|
||
|
basic/searchbox.html
|
||
|
~~~~~~~~~~~~~~~~~~~~
|
||
|
|
||
|
Sphinx sidebar template: quick search box.
|
||
|
|
||
|
:copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
|
||
|
:license: BSD, see LICENSE for details.
|
||
|
#}
|
||
|
{%- if pagename != "search" and builder != "singlehtml" %}
|
||
|
<search id="searchbox" style="display: none" role="search">
|
||
|
<h3 id="searchlabel">{{ _('Quick search') }}</h3>
|
||
|
<div class="searchformwrapper">
|
||
|
<form class="search" action="{{ pathto('search') }}" method="get">
|
||
|
<input type="text" name="q" aria-labelledby="searchlabel" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"/>
|
||
|
<input type="submit" value="{{ _('Go') }}" />
|
||
|
</form>
|
||
|
</div>
|
||
|
</search>
|
||
|
<script>document.getElementById('searchbox').style.display = "block"</script>
|
||
|
{%- endif %}
|