Added a sample template

This commit is contained in:
Remy
2011-08-09 21:03:23 -07:00
parent 07ffe8691c
commit 4b701f5a27
13 changed files with 1360 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<%inherit file="base.html" />
<%def name="body()">
<div class="table_wrapper">
<h1>Artists You Might Like</h1>
<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>