2024-03-14 23:24:59 +00:00
|
|
|
{{/* Value - value of the search field (for search results page) */}}
|
|
|
|
{{/* Disabled (optional) - if search field has to be disabled */}}
|
|
|
|
{{/* Placeholder (optional) - placeholder text to be used */}}
|
2024-03-15 09:45:30 +00:00
|
|
|
<input type="search" name="q"{{with .Value}} value="{{.}}"{{end}} maxlength="255" spellcheck="false" placeholder="{{with .Placeholder}}{{.}}{{else}}{{ctx.Locale.Tr "search.search"}}{{end}}"{{if .Disabled}} disabled{{end}}>
|