summaryrefslogtreecommitdiffstats
path: root/templates/single_photo.tpl
blob: 3965edcb3f6b55e4045a5e24c5bcfc55b47b8285 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!-- Single photo -->
<table>
 <tr>
  <td class="index_header">
   <b>Photo {$image_name}</b><br />
  </td>
 </tr>
 <tr>
  <td>
   <div id='matrix'>
   <table>
    <tr>
     <td colspan="3">
      <a href="javascript:showPhotoIndex();">
       <img src="{$image_url}" />
      </a>
     </td>
    </tr>
    <tr>
     <td style="text-align: left;">
      { if $previous_url == "" }
       &nbsp;
      { else }
      <a href="{$previous_url}">Previous</a>
      { /if }
     </td>
     <td>&nbsp;</td>
     <td style="text-align: right;">
      { if $next_url == "" }
      &nbsp;
      { else }
      <a href="{$next_url}">Next</a>
      { /if}
     </td>
    </tr>
   </table>
   </div>
  </td>
 </tr>
</table>
<!-- /Single photo -->