mediawiki-skins-Citizen/templates/Search.mustache
2024-09-26 17:47:19 -04:00

32 lines
1.3 KiB
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-random-href URL of Special:Random
string msg-randompage tooltip message for random page button
}}
<div class="citizen-search citizen-header__item citizen-dropdown">
<details id="citizen-search-details" class="citizen-dropdown-details">
{{>Search__button}}
</details>
<div role="search" id="citizen-search__card" class="citizen-search-box citizen-search__card citizen-menu__card">
<form action="{{form-action}}" class="citizen-search__form" id="searchform" autocomplete="off">
<input type="hidden" name="title" value="{{page-title}}">
<label class="citizen-search__formIcon" for="searchInput">
<span class="citizen-search__icon citizen-ui-icon mw-ui-icon-wikimedia-search"></span>
<span class="screen-reader-text">{{msg-search}}</span>
</label>
{{{html-input}}}
<a
class="citizen-search__random citizen-search__formButton"
href="{{html-random-href}}"
title="{{msg-randompage}}">
<span class="citizen-ui-icon mw-ui-icon-wikimedia-die"></span>
<span class="screen-reader-text">{{msg-random}}</span>
</a>
</form>
{{>SearchFooter}}
</div>
</div>