diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2007-07-07 10:07:57 +0000 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2007-07-07 10:07:57 +0000 |
commit | 6967bc04776550a9f1ada407f63d73d0cc786de8 (patch) | |
tree | 05c29d8dbe8e76dee7f033ef3d773522e500e9c5 | |
parent | 2047cdb89acf1566d11a4d5649835178f9dbcbdc (diff) |
issue31, added a nice icon for the photo preview in single photo view
git-svn-id: file:///var/lib/svn/phpfspot/trunk@177 fa6a889d-dae6-447d-9e79-4ba9a3039384
-rw-r--r-- | resources/photo.png | bin | 0 -> 762 bytes | |||
-rw-r--r-- | templates/single_photo.tpl | 4 |
2 files changed, 2 insertions, 2 deletions
diff --git a/resources/photo.png b/resources/photo.png Binary files differnew file mode 100644 index 0000000..02af949 --- /dev/null +++ b/resources/photo.png diff --git a/templates/single_photo.tpl b/templates/single_photo.tpl index 0f1bd2f..01aa1fd 100644 --- a/templates/single_photo.tpl +++ b/templates/single_photo.tpl @@ -78,13 +78,13 @@ { /if } <br /> { if $prev_img } - <u>Previous:</u><br /> + <u><img src="resources/photo.png" alt="photo icon" /> Previous:</u><br /> <a href="{$previous_url}" onclick="click(this);"> <img src="phpfspot_img.php?idx={$prev_img}&width={$mini_width}" /><br /> </a> { /if} { if $next_img } - <u>Next:</u><br /> + <u><img src="resources/photo.png" alt="photo icon" /> Next:</u><br /> <a href="{$next_url}" onclick="click(this);"> <img src="phpfspot_img.php?idx={$next_img}&width={$mini_width}" /><br /> </a> |