summaryrefslogtreecommitdiffstats
path: root/templates/single_photo.tpl
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2007-06-05 20:27:07 +0000
committerAndreas Unterkircher <unki@netshadow.at>2007-06-05 20:27:07 +0000
commit81024014bf2fabc1c606edcd8b6441e67ffc824f (patch)
treeee770eb2874b60fbc0bb86bb2bc6d9f822d019af /templates/single_photo.tpl
parent193a2982417fb5b004c47cc96dcd112e1b07e47d (diff)
renamed single photo display file
git-svn-id: file:///var/lib/svn/phpfspot/trunk@17 fa6a889d-dae6-447d-9e79-4ba9a3039384
Diffstat (limited to 'templates/single_photo.tpl')
-rw-r--r--templates/single_photo.tpl24
1 files changed, 24 insertions, 0 deletions
diff --git a/templates/single_photo.tpl b/templates/single_photo.tpl
new file mode 100644
index 0000000..2acf924
--- /dev/null
+++ b/templates/single_photo.tpl
@@ -0,0 +1,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>