<%else>
<%include include/header title=artist.name>
-<h1><% artist.name|html></h1>
+<h1><%include include/artist></h1>
<h2>Tracks by <% artist.name|html></h2>
<%foreach artists artist|sort>
<%first><ul><%/first>
- <li><a href="artist?id=<% artist.id|html>"><% artist.name|html></a></li>
+ <li><%include include/artist></li>
<%last></ul><%/last>
<%foreachelse>
<p>There are no artists.</p>
--- /dev/null
+<a href="artist?id=<%artist.id|html>"><% artist.name|html></a><%foreach artist.groups group|sort><%first> / <%/first><%notfirst> ^ <%/notfirst><a href="group?id=<%group.id|html>"><%group.name|html></a><%/foreach>
\ No newline at end of file
by
<%foreach track.artists artist>
<%notfirst>&<%/notfirst>
- <a href="artist?id=<% artist.id|html>"><% artist.name|html></a>
+ <%include include/artist>
<%/foreach>
<%ifnull !track.remix>
- (<% track.remix|html> by <%foreach track.remixArtists artist><%notfirst> & <%/notfirst><a href="artist?id=<% artist.id|html>"><% artist.name|html></a><%/foreach>)
+ (<% track.remix|html><%foreach track.remixArtists artist><%first> by <%/first><%notfirst> & <%/notfirst><%include include/artist><%/foreach>)
<%/if>
</h1>