Mark McGranaghan 8d31ec147c move to vendor
2012-11-17 08:21:42 -08:00

13 lines
207 B
Plaintext

<%@ val someName: String = "someDefaultValue" %>
<% import com.acme.MySnippets._ %>
<html>
<body>
<h1>Hello ${someName}%</h1>
<ul>
<%= for (person <- people) { %>
<li>${person.name}</li>
<% } %>
</ul>