trying out resource routing. Works decently. Added lots of notes.
[zzz-floof.git] / floof / templates / index.mako
index 057399b..8ee86e6 100644 (file)
@@ -1,7 +1,10 @@
 <%inherit file="base.mako" />
 
+
 <ul class="artwork-grid">
     % for artwork in c.artwork:
-    <li><img width="180" src="${artwork.get_path()}"</li>
+    <li><a href="${h.url("art", id=artwork.id)}">
+        <img width="180" src="${artwork.get_path()}">
+    </a></li>
     % endfor
 </ul>