Files
hugo-index/layouts/partials/searchbox.html
Aditya Telange 030461a769 Add search placeholder by calc pages and tags
ex. Search among X titles and Y tags.
Removes param searchBoxPlaceholder
2023-05-21 10:20:00 +05:30

11 lines
393 B
HTML

<div class="searchBox">
<input id="search" autofocus type="search" placeholder='
{{- with site.Params.headers }}
{{- print "Search among" }}
{{- printf " %d %s " (len site.RegularPages) (.key | pluralize | lower) }}
{{- print "and" }}
{{- printf " %d %s..." (len site.Taxonomies.tags) (.value | pluralize | lower) }}
{{- end -}}
' autocomplete="off" />
</div>