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-07 05:30:54 +00:00
|
|
|
<input
|
|
|
|
type="checkbox"
|
|
|
|
id="search-toggle"
|
|
|
|
class="mw-checkbox-hack"
|
|
|
|
role="button"
|
|
|
|
title="{{msg-citizen-search-toggle}}"
|
|
|
|
aria-labelledby="search-toggle-label"
|
|
|
|
aria-controls="searchform">
|
|
|
|
<label
|
|
|
|
id="search-toggle-label"
|
|
|
|
class="screen-reader-text"
|
|
|
|
for="search-toggle">
|
|
|
|
{{msg-citizen-search-toggle}}
|
|
|
|
</label>
|
|
|
|
<div id="search-toggle-icon">
|
|
|
|
<div id="search-toggle-icon-1" class="search-toggle-icon-div"></div>
|
|
|
|
<div id="search-toggle-icon-2" class="search-toggle-icon-div"></div>
|
|
|
|
<div id="search-toggle-icon-3" class="search-toggle-icon-div"></div>
|
|
|
|
</div>
|
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>
|