I have this list of an array and want to print something
if index = 0, but print something else
after that.
I've looked at this docs but seems not successful... all of them is printing something else
instead.
{{ range $i, $v := .Lists }}
{{ if $i = 0 -}}
do something
{{- else -}}
do something else
{{- end -}}
{{- end }}