source: extensions/luciano/template/picture_nav_buttons.tpl @ 27593

Last change on this file since 27593 was 12534, checked in by plg, 12 years ago

bug fixed: keyboard navigation available on Luciano (thanks to sichr.net for the tip)

bug fixed: compatibility with Google+1 plugin on picture.php

File size: 2.9 KB
Line 
1<div class="navButtons">
2
3        {if isset($first)}
4        <a class="navButton" href="{$first.U_IMG}" title="{'first_page'|@translate} : {$first.TITLE}" rel="first"><img src="{$ROOT_URL}{$themeconf.icon_dir}/first.png" class="button" alt="{'first_page'|@translate}"></a>
5        {else}
6        <a class="navButton"><img src="{$ROOT_URL}{$themeconf.icon_dir}/first_unactive.png" class="button" alt=""></a>
7        {/if}
8       
9        {if isset($previous)}
10        <a class="navButton" href="{$previous.U_IMG}" title="{'previous_page'|@translate} : {$previous.TITLE}" rel="prev"><img src="{$ROOT_URL}{$themeconf.icon_dir}/left.png" class="button" alt="{'previous_page'|@translate}"></a>
11        {else}
12        <a class="navButton"><img src="{$ROOT_URL}{$themeconf.icon_dir}/left_unactive.png" class="button" alt=""></a>
13        {/if}
14       
15        {if isset($U_SLIDESHOW_STOP)}
16        <a class="navButton" href="{$U_SLIDESHOW_STOP}" title="{'slideshow_stop'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/stop_selected.png" class="button" alt="{'slideshow_stop'|@translate}"></a>
17        {/if}
18       
19        {if isset($slideshow.U_START_PLAY)}
20        <a class="navButton" href="{$slideshow.U_START_PLAY}" title="{'slideshow_play'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/play.png" class="button" alt="{'slideshow_play'|@translate}"></a>
21        {/if}
22       
23        {if isset($slideshow.U_STOP_PLAY)}
24        <a class="navButton" href="{$slideshow.U_STOP_PLAY}" title="{'stop_play'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/pause.png" class="button" alt="{'stop_play'|@translate}"></a>
25        {/if}
26       
27        {if isset($U_UP) and !isset($slideshow)}
28        <a class="navButton" href="{$U_UP}" title="{'thumbnails'|@translate}" rel="up"><img src="{$ROOT_URL}{$themeconf.icon_dir}/up.png" class="button" alt="{'thumbnails'|@translate}"></a>
29        {/if}
30       
31        {if isset($next)}
32        <a class="navButton" href="{$next.U_IMG}" title="{'next_page'|@translate} : {$next.TITLE}" rel="next"><img src="{$ROOT_URL}{$themeconf.icon_dir}/right.png" class="button" alt="{'next_page'|@translate}"></a>
33        {else}
34        <a class="navButton"><img src="{$ROOT_URL}{$themeconf.icon_dir}/right_unactive.png" class="button" alt=""></a>
35        {/if}
36       
37        {if isset($last)}
38        <a class="navButton" href="{$last.U_IMG}" title="{'last_page'|@translate} : {$last.TITLE}" rel="last"><img src="{$ROOT_URL}{$themeconf.icon_dir}/last.png" class="button" alt="{'last_page'|@translate}"></a>
39        {else}
40        <a class="navButton"><img src="{$ROOT_URL}{$themeconf.icon_dir}/last_unactive.png" class="button" alt=""></a>
41        {/if}
42       
43        {if isset($slideshow.U_START_REPEAT)}
44        <a class="navButton" href="{$slideshow.U_START_REPEAT}" title="{'start_repeat'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/start_repeat.png" class="button" alt="{'start_repeat'|@translate}"></a>
45        {/if}
46       
47        {if isset($slideshow.U_STOP_REPEAT)}
48        <a class="navButton" href="{$slideshow.U_STOP_REPEAT}" title="{'stop_repeat'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/stop_repeat.png" class="button" alt="{'stop_repeat'|@translate}"></a>
49        {/if}
50
51</div>
Note: See TracBrowser for help on using the repository browser.