mirror of
https://github.com/rembo10/headphones.git
synced 2026-01-11 07:48:03 -05:00
16 lines
428 B
HTML
16 lines
428 B
HTML
<%inherit file="base.html" />
|
|
<%def name="body()">
|
|
<div class="title">
|
|
<h1 class="clearfix"><i class="fa fa-users"></i> 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>
|