Show remix information.
[demoscenemusic.git] / src / main / resources / templates / track
1 <%ifnull track>
2 <%include include/header title=="Unknown Track">
3 <p>Unknown track ID.</p>
4 <%else>
5 <%include include/header title=track.name>
6
7 <h1>
8         <% track.name|html>
9         by
10         <%foreach track.artists artist>
11                 <%notfirst>&amp;<%/notfirst>
12                 <a href="artist?id=<% artist.id|html>"><% artist.name|html></a>
13         <%/foreach>
14         <%ifnull !track.remix>
15         (<% track.remix|html> by <%foreach track.remixArtists artist><%notfirst> &amp; <%/notfirst><a href="artist?id=<% artist.id|html>"><% artist.name|html></a><%/foreach>)
16         <%/if>
17 </h1>
18
19 <dl>
20
21 <dt>Styles</dt>
22 <dd>
23 <ul>
24 <%foreach track.styles style|sort>
25 <li><a href="style?id=<% style.id|html>"><% style.name|html></a></li>
26 <%/foreach>
27 </ul>
28 </dd>
29
30 </dl>
31
32
33 <%/if>
34
35 <%include include/footer>