Source of explicit_escape.adp
<html>
<head>
<title>Demo: Explicit Escape</title>
</head>
<body>
<h1>Hello</h1>
<%
foreach name [list Fred Ginger Mary Sarah Elmo] {
template::adp_puts "<p>Welcome to this page $name!</p>"
}
%>
</body>
</html>