display photo index as matrix
[phpfspot.git] / templates / photo_index.tpl
1 <!-- Image Matrix -->
2 <table>
3  <tr>
4   <td colspan="{$columns}">
5    {$count} images have been found for the selected tags
6   </td>
7  </tr>
8 {section name="row" loop=$rows step=1}
9  <tr>
10  {section name="col" loop=$columns step=1}
11   <td>
12    <a href="javascript:showImage({$images[row][col]});">
13     <img src="phpfspot_img.php?idx={$images[row][col]}&amp;width={$width}" />
14    </a>
15   </td>
16  {/section}
17  </tr>
18 {/section} 
19 </table>
20 <!-- /Image Matrix -->