diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2007-06-07 19:56:12 +0000 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2007-06-07 19:56:12 +0000 |
commit | f54ac86a8a53196b268c086c8d5c43fe85aa9e1a (patch) | |
tree | ed721e65cf87f32c100f69d4008e2a6e603d1431 /templates | |
parent | 588923cbaafe421b32ec55e2dd4c4bb04df625dd (diff) |
use some icons in single photo view
git-svn-id: file:///var/lib/svn/phpfspot/trunk@45 fa6a889d-dae6-447d-9e79-4ba9a3039384
Diffstat (limited to 'templates')
-rw-r--r-- | templates/single_photo.tpl | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/templates/single_photo.tpl b/templates/single_photo.tpl index 3965edc..4501333 100644 --- a/templates/single_photo.tpl +++ b/templates/single_photo.tpl @@ -1,12 +1,15 @@ <!-- Single photo --> <table> <tr> - <td class="index_header"> + <td class="index_header" style="text-align: left;"> <b>Photo {$image_name}</b><br /> </td> + <td class="index_header" style="text-align: right;"> + <img src="resources/information.png" /> + </td> </tr> <tr> - <td> + <td colspan="2"> <div id='matrix'> <table> <tr> @@ -21,7 +24,9 @@ { if $previous_url == "" } { else } - <a href="{$previous_url}">Previous</a> + <a href="{$previous_url}"> + <img src="resources/arrow_left.png" /> + </a> { /if } </td> <td> </td> @@ -29,7 +34,9 @@ { if $next_url == "" } { else } - <a href="{$next_url}">Next</a> + <a href="{$next_url}"> + <img src="resources/arrow_right.png" /> + </a> { /if} </td> </tr> |