summaryrefslogtreecommitdiffstats
path: root/templates/photo_index.tpl
blob: 7f3af463864b9a14723a83dcae17469af3464d44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!-- 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 -->