The syntax {repeat: for person in results} means to loop over the results list. For each element in the list, assign the element to a new variable named person and then run the contents of the {repeat} block.
person is a name the author of the example chose when writing it. You can use any name you want, and then it will be available within the {repeat} for each element of the list.