Add include to render a complete artist.
[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><%include include/artist></li>
8         <%last></ul><%/last>
9 <%foreachelse>
10         <p>There are no artists.</p>
11 <%/foreach>
12
13 <%include include/footer>