Action View
Uses embedded Ruby instead of its own templating language.
<html>
<body>
<h1>Guestbook</h1>
<%
for
e
in
@
entries
%>
<p>
<%=
e
.
name
%>
:
<%=
e
.
comments
%>
</p>
<%
end
%>
</body>
</html>