summaryrefslogtreecommitdiffstats
path: root/templates/single_photo.tpl
diff options
context:
space:
mode:
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>