site-search-mobile.html 633 B

1234567891011121314151617
  1. {{ if $.Param "enableSearch" }}
  2. <div id="mobileSearchBtn" class="mobile-search__btn">
  3. {{ partial "svgs/search.svg" (dict "width" 22 "height" 22) }}
  4. </div>
  5. <div id="search-mobile-container" class="mobile-search hide">
  6. <div class="mobile-search__top">
  7. <input id="search-mobile" type="text" aria-label="Mobile Search" placeholder="Search..." class="mobile-search__top--input"/>
  8. <div id="search-mobile-close" class="mobile-search__top--icon">
  9. {{ partial "svgs/cancel.svg" (dict "width" 22 "height" 22) }}
  10. </div>
  11. </div>
  12. <div id="search-mobile-results" class="mobile-search__body">
  13. </div>
  14. </div>
  15. {{ end }}