Go actions in the form {{ range . }} and others, are stripped by the minifier.
Input
<label></label>
<select name="" id="">
{{range .}}
<option value="{{.}}">{{.}}</option>
{{else}}
<option disabled>No options available</option>
{{end}}
</select>
Results in
<label></label><select><option value={{.}}>{{.}}<option disabled>No options available</select>
Go actions in the form {{ range . }} and others, are stripped by the minifier.
Input
Results in