summaryrefslogtreecommitdiff
path: root/tests/examplefiles/test.ssp
blob: 96d26d553be15a3a15cc6abb5c1dfb6222e7ff80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<%@ val someName: String = "someDefaultValue" %>
<% import com.acme.MySnippets._ %>
<html>
<body>
<h1>Hello ${someName}%</h1>

<ul>
<%= for (person <- people) { %>
  <li>${person.name}</li>
<% } %>
</ul>