mirror of
https://github.com/ThePhD/sol2
synced 2026-08-15 10:32:03 -04:00
16 lines
411 B
HTML
16 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 %}
|