search.html 1001 B

1234567891011121314151617181920212223242526272829303132
  1. <aside class="search-results" id="search">
  2. <div class="container">
  3. <section class="search-header">
  4. <div class="row no-gutters justify-content-between mb-3">
  5. <div class="col-6">
  6. <h1>{{ i18n "search" }}</h1>
  7. </div>
  8. <div class="col-6 col-search-close">
  9. <a class="js-search" href="#"><i class="fas fa-times-circle text-muted" aria-hidden="true"></i></a>
  10. </div>
  11. </div>
  12. <div id="search-box">
  13. {{ if eq site.Params.search.engine 1 }}
  14. <input name="q" id="search-query" placeholder="{{i18n "search_placeholder"}}" autocapitalize="off"
  15. autocomplete="off" autocorrect="off" spellcheck="false" type="search" class="form-control">
  16. {{ else }}
  17. <!-- Search box will appear here -->
  18. {{ end }}
  19. </div>
  20. </section>
  21. <section class="section-search-results">
  22. <div id="search-hits">
  23. <!-- Search results will appear here -->
  24. </div>
  25. </section>
  26. </div>
  27. </aside>