summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2007-06-07 15:21:32 +0000
committerAndreas Unterkircher <unki@netshadow.at>2007-06-07 15:21:32 +0000
commitfe544d65af90df49390155616b9c864ea60ff2e5 (patch)
tree478c2636a6d5718b5826d2e103f3e3c6fc0e2658 /templates
parent297ea45d46469b8c185bc0e2be1c4aa73b0c03e7 (diff)
restyle single photo view
git-svn-id: file:///var/lib/svn/phpfspot/trunk@43 fa6a889d-dae6-447d-9e79-4ba9a3039384
Diffstat (limited to 'templates')
-rw-r--r--templates/single_photo.tpl49
1 files changed, 33 insertions, 16 deletions
diff --git a/templates/single_photo.tpl b/templates/single_photo.tpl
index 2acf924..3965edc 100644
--- a/templates/single_photo.tpl
+++ b/templates/single_photo.tpl
@@ -1,24 +1,41 @@
+<!-- Single photo -->
<table>
<tr>
- <td colspan="3">
- <img src="{$image_url}" />
+ <td class="index_header">
+ <b>Photo {$image_name}</b><br />
</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>
+ <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 -->