Add template for artists page.
[demoscenemusic.git] / src / main / resources / templates / artists
1 <html>
2
3 <head>
4         <title>Artists - Demoscene Music</title>
5 </head>
6
7 <body>
8
9 <div id="main">
10
11 <h1>Browse Artists</h1>
12
13 <%foreach artists artist>
14         <%first><ul><%/first>
15         <li><a href="artist?id=<% artist.id|html>"><% artist.name|html></a></li>
16         <%last></ul><%/last>
17 <%foreachelse>
18         <p>There are no artists.</p>
19 <%/foreach>
20
21 </div>
22
23 <div id="footer">
24 © 2012 David ‘Bombe’ Roden
25 </div>
26
27 </body>
28
29 </html>