searchbox.html 789 B

1234567891011121314151617181920
  1. {#
  2. basic/searchbox.html
  3. ~~~~~~~~~~~~~~~~~~~~
  4. Sphinx sidebar template: quick search box.
  5. :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS.
  6. :license: BSD, see LICENSE for details.
  7. #}
  8. {%- if pagename != "search" %}
  9. {#<div id="searchbox" style="display: none" class="well">
  10. <form class="search" action="{{ pathto('search') }}" method="get">
  11. <input placeholder="{{ _('Quick search') }}" class="span2" type="text" name="q" style="margin-bottom:0;" />
  12. <input class="btn btn-primary" type="submit" value="{{ _('Go') }}" />
  13. <input type="hidden" name="check_keywords" value="yes" />
  14. <input type="hidden" name="area" value="default" />
  15. </form>
  16. </div>
  17. <script type="text/javascript">$('#searchbox').show(0);</script>#}
  18. {%- endif %}