mirror of
https://github.com/evilhero/mylar
synced 2024-12-23 08:12:41 +00:00
15 lines
465 B
HTML
Executable file
15 lines
465 B
HTML
Executable file
<%inherit file="base.html" />
|
|
<%def name="body()">
|
|
<div class="title">
|
|
<h1 class="clearfix"><img src="interfaces/default/images/icon_extra.gif" alt="extra"/>Artists You Might Like</h1>
|
|
</div>
|
|
<div class="table_wrapper">
|
|
<div class="cloudtag">
|
|
<ul id="cloud">
|
|
%for artist in cloudlist:
|
|
<li><a href="addArtist?artistid=${artist['ArtistID']}" class="tag${artist['Count']}">${artist['ArtistName']}</a></li>
|
|
%endfor
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</%def>
|