mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
17 lines
411 B
HTML
17 lines
411 B
HTML
{%- extends "haiku/layout.html" %}
|
|
|
|
{% set script_files = script_files + ["_static/search-fix.js"] %}
|
|
|
|
{% block haikuheader %}
|
|
<div class="header-left">
|
|
{{ super() }}
|
|
</div>
|
|
<div class="header-right">
|
|
<h3>Search the Documentation</h3>
|
|
<form action="{{ pathto('search') }}" method="get">
|
|
<input type="text" name="q" value="">
|
|
<input type="submit" value="search">
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|