display photo index as matrix
[phpfspot.git] / templates / photo_index.tpl
index f917364fcb589ea3bf32be4cfedd87bfdf80f2e1..7f3af463864b9a14723a83dcae17469af3464d44 100644 (file)
@@ -1 +1,20 @@
-{$image_matrix}
+<!-- Image Matrix -->
+<table>
+ <tr>
+  <td colspan="{$columns}">
+   {$count} images have been found for the selected tags
+  </td>
+ </tr>
+{section name="row" loop=$rows step=1}
+ <tr>
+ {section name="col" loop=$columns step=1}
+  <td>
+   <a href="javascript:showImage({$images[row][col]});">
+    <img src="phpfspot_img.php?idx={$images[row][col]}&amp;width={$width}" />
+   </a>
+  </td>
+ {/section}
+ </tr>
+{/section} 
+</table>
+<!-- /Image Matrix -->