16 lines
527 B
HTML
16 lines
527 B
HTML
{#
|
|
basic/searchbox.html with heading removed.
|
|
#}
|
|
{%- if pagename != "search" and builder != "singlehtml" %}
|
|
<div id="searchbox" style="display: none" role="search">
|
|
<div class="searchformwrapper">
|
|
<form class="search" action="{{ pathto('search') }}" method="get">
|
|
<input type="text" name="q" aria-labelledby="searchlabel"
|
|
placeholder="Search"/>
|
|
<input type="submit" value="{{ _('Go') }}" />
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript">$('#searchbox').show(0);</script>
|
|
{%- endif %}
|