mediawiki-skins-Citizen/includes/templates/Searchbox.mustache
2020-06-04 13:32:01 -04:00

13 lines
546 B
Plaintext

{{!
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
}}
<form action="{{form-action}}" role="search" id="search-form">
<input type="hidden" name="title" value="{{page-title}}">
<label class="screen-reader-text" for="search-input">{{msg-search}}</label>
{{{html-input}}}
{{{html-button-search}}}
</form>