diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2007-06-07 15:21:32 +0000 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2007-06-07 15:21:32 +0000 |
commit | fe544d65af90df49390155616b9c864ea60ff2e5 (patch) | |
tree | 478c2636a6d5718b5826d2e103f3e3c6fc0e2658 /templates | |
parent | 297ea45d46469b8c185bc0e2be1c4aa73b0c03e7 (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.tpl | 49 |
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 == "" } - - { else } - <a href="{$previous_url}">Previous</a> - { /if } - </td> - <td> </td> - <td style="text-align: right;"> - { if $next_url == "" } - - { 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 == "" } + + { else } + <a href="{$previous_url}">Previous</a> + { /if } + </td> + <td> </td> + <td style="text-align: right;"> + { if $next_url == "" } + + { else } + <a href="{$next_url}">Next</a> + { /if} + </td> + </tr> + </table> + </div> </td> </tr> </table> +<!-- /Single photo --> |