mirror of https://github.com/go-gitea/gitea.git
5 lines
423 B
Handlebars
5 lines
423 B
Handlebars
{{/* 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 */}}
|
|
<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}}>
|