{{/* example how to use actions */}}
{{"Name"}}
: {{.Name}}
Gender
{{$gender := .Gender}}
: {{$gender}}
Hobbies
: {{range $index, $elem := .Hobbies}} {{$elem}}, {{end}}
Affiliation
: {{.Info.Affiliation}} ({{.Info.GetAffiliationDetailInfo}})
{{with .Info}}
Address
: {{.Address}}
{{end}} {{if eq .Name "Bruce Wayne"}}
I'm the Batman!
{{end}}