searchbox.html 588 B

12345678910111213
  1. {# Changes to the original: capitalized 'Quick Search' #}
  2. {%- if pagename != "search" and builder != "singlehtml" %}
  3. <div id="searchbox" style="display: none" role="search">
  4. <h3>{{ _('Quick Search') }}</h3>
  5. <form class="search" action="{{ pathto('search') }}" method="get">
  6. <input type="text" name="q" />
  7. <input type="submit" value="{{ _('Go') }}" />
  8. <input type="hidden" name="check_keywords" value="yes" />
  9. <input type="hidden" name="area" value="default" />
  10. </form>
  11. </div>
  12. <script type="text/javascript">$('#searchbox').show(0);</script>
  13. {%- endif %}