2020-06-04 06:36:06 +00:00
|
|
|
{{!
|
2020-06-04 17:32:01 +00:00
|
|
|
string form-action action attribute of the search form
|
|
|
|
string page-title page title of the search page
|
|
|
|
string msg-search search text label
|
|
|
|
string html-input raw HTML containing the input box of the search box
|
|
|
|
string html-button-search raw HTML containing the button of the search box
|
2020-06-04 06:36:06 +00:00
|
|
|
}}
|
2020-06-06 18:47:03 +00:00
|
|
|
<form action="{{form-action}}" role="search" id="searchform">
|
2020-06-04 06:36:06 +00:00
|
|
|
<input type="hidden" name="title" value="{{page-title}}">
|
2020-06-06 18:47:03 +00:00
|
|
|
<label class="screen-reader-text" for="searchInput">{{msg-search}}</label>
|
2020-06-04 06:36:06 +00:00
|
|
|
{{{html-input}}}
|
|
|
|
{{{html-button-search}}}
|
|
|
|
</form>
|