added some comments to the config file
[phpfspot.git] / templates / photo_index.tpl
1 <!-- Image Matrix -->
2 <table>
3  <tr>
4   <td class="index_header">
5    <b>Photo Index</b><br />
6    {if $count == 1}
7       {$count} image has been found for the selected tags
8    {else}
9       {$count} images have been found for the selected tags
10    {/if}
11   </td>
12  </tr>
13  <tr>
14   <td>
15    <div id="matrix">
16    <table>
17    {section name="row" loop=$rows step=1}
18     <tr>
19     {section name="col" loop=$columns step=1}
20      <td class="thumb">
21       {if $images[row][col] }
22       <div id="outter">
23       <div id="inner">
24        <a href="javascript:showImage({$images[row][col]});" id="{$images[row][col]}" class="bubble">
25         <img class="thumb" src="phpfspot_img.php?idx={$images[row][col]}&amp;width={$width}" />
26        </a>
27       </div>
28       </div>
29       {else}
30        &nbsp;
31       {/if}
32      </td>
33     {/section}
34     </tr>
35    {/section} 
36    </table>
37    </div>
38   </td>
39  </tr>
40 </table>
41 <script type="text/javascript">
42 <!--
43    bindBubbles();
44 -->
45 </script>
46 <!-- /Image Matrix -->