Welcome to mirror list, hosted at ThFree Co, Russian Federation.

site-search.html « search « navbar « partials « layouts - github.com/zzossig/hugo-theme-zdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a6c9f0d782b56f2f550ab111b20b441b379b1af4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ if $.Param "enableSearch" }}

<div class="search" data-bgimg="{{ if $.Params.landing.backgroundImage }}true{{ else }}false{{ end }}">
  <span class="icon">
    {{ partial "svgs/search.svg" (dict "width" 22 "height" 22) }}
  </span>
  <input id="search" aria-label="Site Search" class="input" type="text" autocomplete="off" placeholder="Search">
  <div id="search-results" class="dropdown">
    <div id="search-menu" class="dropdown-menu">
    </div>
  </div>
</div>

{{ end }}