diff options
author | rvelices <rv-github@modusoptimus.com> | 2006-01-27 01:11:43 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2006-01-27 01:11:43 +0000 |
commit | a8fd5ee6cf5cf061ed0ff789d6030290b3418be5 (patch) | |
tree | 7c31e61422551c2c0672cd43611729f70202bfae /template/yoga | |
parent | 10329e517b22671f002bcb2929ebb54a09f22573 (diff) |
improvement: got rid of num= _GET param in category.php (use only start=) so
that links to category for search engines are the same as in category
pagination
feature 77: standard navigation link : HTML Link types
improvement: add go to first and last image buttons in picture page
improvement: do not increase image hit in picture.php when rating, adding to
favorites, caddie, ...
improvement: show number of hits in most_visited (as best_rated shows the rate)
git-svn-id: http://piwigo.org/svn/trunk@1014 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga')
-rw-r--r-- | template/yoga/icon/first.png | bin | 0 -> 1645 bytes | |||
-rw-r--r-- | template/yoga/icon/last.png | bin | 0 -> 1642 bytes | |||
-rw-r--r-- | template/yoga/picture.tpl | 19 |
3 files changed, 13 insertions, 6 deletions
diff --git a/template/yoga/icon/first.png b/template/yoga/icon/first.png Binary files differnew file mode 100644 index 000000000..2b8db1cff --- /dev/null +++ b/template/yoga/icon/first.png diff --git a/template/yoga/icon/last.png b/template/yoga/icon/last.png Binary files differnew file mode 100644 index 000000000..12e1367a7 --- /dev/null +++ b/template/yoga/icon/last.png diff --git a/template/yoga/picture.tpl b/template/yoga/picture.tpl index d28632ca0..ceafa6a96 100644 --- a/template/yoga/picture.tpl +++ b/template/yoga/picture.tpl @@ -14,7 +14,7 @@ <div id="imageToolBar"> <div class="randomButtons"> - <a href="{U_SLIDESHOW}" title="{L_SLIDESHOW}"><img src="{themeconf:icon_dir}/slideshow.png" class="button" alt="{L_SLIDESHOW}"></a> + <a href="{U_SLIDESHOW}" title="{L_SLIDESHOW}" rel="nofollow"><img src="{themeconf:icon_dir}/slideshow.png" class="button" alt="{L_SLIDESHOW}"></a> <a href="{U_METADATA}" title="{L_PICTURE_METADATA}"><img src="{themeconf:icon_dir}/metadata.png" class="button" alt="{L_PICTURE_METADATA}"></a> <!-- BEGIN representative --> <a href="{representative.URL}" title="{lang:set as category representative}"><img src="{themeconf:icon_dir}/representative.png" class="button" alt="{lang:representative}" /></a> @@ -34,13 +34,20 @@ </div> <div class="navButtons"> +<!-- BEGIN last --> + <a class="navButton prev" href="{last.U_IMG}"><img src="{themeconf:icon_dir}/last.png" class="button" alt="{lang:last_page}"></a> +<!-- END last --> <!-- BEGIN next --> - <a class="navButton next" href="{next.U_IMG}" title="{L_NEXT_IMG}{next.TITLE_IMG}"><img src="{themeconf:icon_dir}/right.png" class="button" alt="next"></a> + <a class="navButton next" href="{next.U_IMG}" title="{L_NEXT_IMG}{next.TITLE_IMG}" rel="next"><img src="{themeconf:icon_dir}/right.png" class="button" alt="next"></a> + <link rel="prefetch" href="{next.U_IMG_SRC}"><link rel="prefetch" href="{next.U_IMG}"> <!-- END next --> <a class="navButton up" href="{U_UP}" title="{L_UP_HINT}"><img src="{themeconf:icon_dir}/up.png" class="button" alt="{L_UP_ALT}"></a> <!-- BEGIN previous --> - <a class="navButton prev" href="{previous.U_IMG}" title="{L_PREV_IMG}{previous.TITLE_IMG}"><img src="{themeconf:icon_dir}/left.png" class="button" alt="previous"></a> + <a class="navButton prev" href="{previous.U_IMG}" title="{L_PREV_IMG}{previous.TITLE_IMG}" rel="prev"><img src="{themeconf:icon_dir}/left.png" class="button" alt="previous"></a> <!-- END previous --> +<!-- BEGIN first --> + <a class="navButton prev" href="{first.U_IMG}" rel="start"><img src="{themeconf:icon_dir}/first.png" class="button" alt="{lang:first_page}"></a> +<!-- END first --> </div> </div> <!-- imageToolBar --> @@ -65,12 +72,12 @@ </div> <!-- BEGIN previous --> -<a class="navThumb" id="thumbPrev" href="{previous.U_IMG}" title="{L_PREV_IMG}{previous.TITLE_IMG}"> +<a class="navThumb" id="thumbPrev" href="{previous.U_IMG}" title="{L_PREV_IMG}{previous.TITLE_IMG}" rel="prev"> <img src="{previous.IMG}" class="thumbLink" id="linkPrev" alt="{previous.TITLE_IMG}"> </a> <!-- END previous --> <!-- BEGIN next --> -<a class="navThumb" id="thumbNext" href="{next.U_IMG}" title="{L_NEXT_IMG}{next.TITLE_IMG}"> +<a class="navThumb" id="thumbNext" href="{next.U_IMG}" title="{L_NEXT_IMG}{next.TITLE_IMG}" rel="next"> <img src="{next.IMG}" class="thumbLink" id="linkNext" alt="{next.TITLE_IMG}"> </a> <!-- END next --> @@ -146,7 +153,7 @@ <p> {rate.SENTENCE} : <!-- BEGIN rate_option --> -{rate.rate_option.SEPARATOR} <a href="{rate.rate_option.URL}">{rate.rate_option.OPTION}</a> +{rate.rate_option.SEPARATOR} <a href="{rate.rate_option.URL}" rel="nofollow">{rate.rate_option.OPTION}</a> <!-- END rate_option --> </p> <!-- END rate --> |