Stubbed out userpages.
[zzz-floof.git] / floof / templates / index.mako
index ce3a112..e9abdfa 100644 (file)
@@ -1,7 +1,11 @@
 <%inherit file="base.mako" />
 
+<a href="${h.url_for(controller="art", action="new")}">Add New Art!</a>
+
 <ul class="artwork-grid">
     % for artwork in c.artwork:
-    <li>${artwork.title}</li>
+    <li><a href="${h.url_for(controller="art", action="show", id=artwork.id)}">
+        <img width="180" src="${artwork.get_path()}">
+    </a></li>
     % endfor
 </ul>