hugo-theme-zzo/layouts/partials/navbar/site-search-mobile.html

13 lines
501 B
HTML
Raw Normal View History

2019-11-20 06:55:05 +00:00
{{ if $.Param "enableSearch" }}
<div id="search-mobile-container" class="mobile-search hide">
<div class="mobile-search__top">
<input id="search-mobile" type="text" placeholder="{{T "search-placeholder"}}" class="mobile-search__top--input"/>
<div id="search-mobile-close" class="mobile-search__top--icon">
{{ partial "svgs/etc/cancel.svg" (dict "width" 22 "height" 22) }}
</div>
</div>
<div id="search-mobile-results" class="mobile-search__body">
</div>
</div>
{{ end }}