mediawiki-skins-Citizen/includes/templates/Searchbox.mustache

32 lines
1.1 KiB
Plaintext
Raw Normal View History

2020-06-04 06:36:06 +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
}}
<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>
<form action="{{form-action}}" role="search" id="searchform">
2020-06-04 06:36:06 +00:00
<input type="hidden" name="title" value="{{page-title}}">
<label class="screen-reader-text" for="searchInput">{{msg-search}}</label>
2020-06-04 06:36:06 +00:00
{{{html-input}}}
{{{html-button-search}}}
</form>