summaryrefslogtreecommitdiffstats
path: root/templates/body.tpl
blob: 7b2812d28b56d725a0b9ce2a3fc8388479e30a5b (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
<div id="body">
Picture Viewer

<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>

</div>