<!DOCTYPE html>

<html>

<head>
	<title>People</title>
</head>

<body>
	<h1>People</h1>
	<ul>
		<% people.each { person -> %>
		<li>${person.firstName} ${person.lastName}</li>
		<% } %>
	</ul>
</body>

</html>