mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-14 10:04:56 +00:00
28 lines
981 B
Plaintext
28 lines
981 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-random-href URL of Special:Random
|
|
string msg-random tooltip message for random page button
|
|
}}
|
|
<div class="citizen-search citizen-header__item">
|
|
<input
|
|
type="checkbox"
|
|
id="citizen-search__checkbox"
|
|
class="mw-checkbox-hack-checkbox">
|
|
<form action="{{form-action}}" role="search" id="searchform" class="citizen-search__card" autocomplete="off">
|
|
<input type="hidden" name="title" value="{{page-title}}">
|
|
<label class="screen-reader-text" for="searchInput">{{msg-search}}</label>
|
|
<div class="citizen-search__icon"></div>
|
|
{{{html-input}}}
|
|
<a
|
|
class="citizen-search__random"
|
|
href="{{html-random-href}}"
|
|
title="{{msg-random}}">
|
|
<span class="screen-reader-text">{{msg-random}}</span>
|
|
</a>
|
|
</form>
|
|
{{>Search__button}}
|
|
</div>
|