summaryrefslogtreecommitdiffstats
path: root/templates/photo_index.tpl
blob: 97c9fb84bb93717030919c245ea72dc343a19b5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!-- 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>
   {if $images[row][col] }
   <a href="javascript:showImage({$images[row][col]});">
    <img src="phpfspot_img.php?idx={$images[row][col]}&amp;width={$width}" />
   </a>
   {/if}
  </td>
 {/section}
 </tr>
{/section} 
</table>
<!-- /Image Matrix -->