delete tags by clicking the x, or typing in -tagtext
[zzz-floof.git] / floof / templates / index.mako
1 <%inherit file="base.mako" />
2
3 <a href="${h.url_for(controller="art", action="new")}">Add New Art!</a>
4
5 <ul class="artwork-grid">
6     % for artwork in c.artwork:
7     <li><a href="${h.url_for(controller="art", action="show", id=artwork.id)}">
8         <img width="180" src="${artwork.get_path()}">
9     </a></li>
10     % endfor
11 </ul>