2019-11-20 06:55:05 +00:00
|
|
|
{{ if $.Param "enableSearch" }}
|
2020-02-16 17:57:14 +00:00
|
|
|
<div id="mobileSearchBtn" class="mobile-search__btn" data-ani="{{ $.Site.Params.enableUiAnimation | default "true" }}">
|
2019-11-22 03:43:10 +00:00
|
|
|
{{ partial "svgs/etc/search.svg" (dict "width" 22 "height" 22) }}
|
|
|
|
</div>
|
|
|
|
|
2020-01-29 00:55:11 +00:00
|
|
|
<div id="search-mobile-container" class="mobile-search hide" data-dir="{{ $.Param "languagedir" | default "ltr" }}">
|
2019-11-20 06:55:05 +00:00
|
|
|
<div class="mobile-search__top">
|
2019-11-24 14:31:28 +00:00
|
|
|
<input id="search-mobile" type="text" aria-label="Mobile Search" placeholder="{{T "search-placeholder"}}" class="mobile-search__top--input"/>
|
2020-01-29 00:55:11 +00:00
|
|
|
<div id="search-mobile-close" class="mobile-search__top--icon">
|
2019-11-20 06:55:05 +00:00
|
|
|
{{ partial "svgs/etc/cancel.svg" (dict "width" 22 "height" 22) }}
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-01-29 00:55:11 +00:00
|
|
|
<div id="search-mobile-results" class="mobile-search__body">
|
2019-11-20 06:55:05 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|