/samples/scalate-example/src/main/webapp/tableSsp.ssp
http://github.com/scalate/scalate · Unknown · 27 lines · 24 code · 3 blank · 0 comment · 0 complexity · f63b1938ad9a48be82081216a0134a35 MD5 · raw file
- <%
- val people = Map("James" -> "Mells", "Hiram" -> "Tampa")
- %>
- <h1>Table Example</h1>
- <div class="main">
- <table>
- <tr>
- <th>Name</th>
- <th>Location</th>
- </tr>
- #for ((name, location) <- people)
- <tr>
- <td>${name}</td>
- <td>${location}</td>
- </tr>
- #end
- </table>
- </div>
- <div class="description">
- <p>
- This is lots and lots of text.
- <b>Scalate</b> really is rather awesome!
- </p>
- </div>