97c9fb84bb93717030919c245ea72dc343a19b5a
[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    {if $images[row][col] }
13    <a href="javascript:showImage({$images[row][col]});">
14     <img src="phpfspot_img.php?idx={$images[row][col]}&amp;width={$width}" />
15    </a>
16    {/if}
17   </td>
18  {/section}
19  </tr>
20 {/section} 
21 </table>
22 <!-- /Image Matrix -->