Remove superfluous whitespace.
[demoscenemusic.git] / src / main / resources / templates / artist
1 <%ifnull artist>
2 <%include include/header title=="Unknown Artist">
3 <p>Unknown artist ID.</p>
4 <%else>
5 <%include include/header title=artist.name>
6
7 <h1><%include include/artist></h1>
8
9 <h2>Tracks by <%artist.name|html></h2>
10
11 <%foreach artist.tracks track|sort>
12 <%first><ul><%/first>
13 <li><a href="track?id=<%track.id|html>"><%track.name|html></a><%foreach track.artists trackArtist|remove value=artist><%first> (together with <%/first><%notfirst>,<%last> and<%/last> <%/notfirst><%include include/artist artist=trackArtist><%last>)<%/last><%/foreach><%foreach track.derivatives derivative><%first> (<%/first><%notfirst>, <%/notfirst><%derivative.properties.audio/codec.shortName|html><%last>)<%/last><%/foreach></li>
14 <%last></ul><%/last>
15 <%foreachelse>
16 <p>This artist does not have any tracks.</p>
17 <%/foreach>
18
19 <%/if>
20
21 <%include include/footer>