summaryrefslogtreecommitdiffstats
path: root/templates/single_photo.tpl
blob: 2acf924b666cd7fc9af3f930148e868739bbc22b (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
<table>
 <tr>
  <td colspan="3">
   <img src="{$image_url}" />
  </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>