diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2008-01-20 16:50:02 +0100 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2008-01-20 16:50:02 +0100 |
commit | c0c134e5d232d5ec11e367b053972d87a0402216 (patch) | |
tree | 6d65cf2a4b82b825652eefe8c6a119e22879426e | |
parent | 8f46e095700c4c44b0aa3e216ca9b43bcc2fe9e6 (diff) |
issue106, set link-id for prev- and next-link in photo index view
Signed-off-by: Andreas Unterkircher <unki@netshadow.at>
-rw-r--r-- | themes/default/templates/photo_index.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/default/templates/photo_index.tpl b/themes/default/templates/photo_index.tpl index dff6ab1..ae0c62c 100644 --- a/themes/default/templates/photo_index.tpl +++ b/themes/default/templates/photo_index.tpl @@ -71,7 +71,7 @@ <img src="resources/arrow_right_gray.png" alt="last page reached" /> { /if } { else } - <a href="{$next_url}"> + <a href="{$next_url}" id="next_link" title="click for the next page (right cursor)"> <img src="resources/arrow_right.png" alt="next photo" /> </a> { /if} @@ -84,7 +84,7 @@ <img src="resources/arrow_left_gray.png" alt="first page reached" /> { /if } { else } - <a href="{$previous_url}"> + <a href="{$previous_url}" id="prev_link" title="click for the previous page (left cursor)"> <img src="resources/arrow_left.png" alt="previous photo" /> </a> { /if } |