67461523195c758c68c37938686f3a34cb6aa3a3
[demoscenemusic.git] / src / main / resources / templates / artists
1 <%include include/header title=="Artists">
2
3 <h1>Browse Artists</h1>
4
5 <%foreach artists artist|sort>
6         <%first><ul><%/first>
7         <li><a href="artist?id=<% artist.id|html>"><% artist.name|html></a></li>
8         <%last></ul><%/last>
9 <%foreachelse>
10         <p>There are no artists.</p>
11 <%/foreach>
12
13 <%include include/footer>