source: extensions/akBookStyle/trunk/template/ak_reloaded_image.tpl @ 3838

Last change on this file since 3838 was 3838, checked in by nikrou, 15 years ago

navigation between picture (AK_NEXT, AK_PREVIOUS)

File size: 999 bytes
Line 
1{if !empty($AK_PIC_SRC) }
2<div id="reload">
3  <table class="picture">
4    <tr class="nline">
5      <td class="ncol">
6        <a id="akPreviousPicture" class="{if empty($AK_PREVIOUS)}hide {/if}load navButton" href="{$AK_PREVIOUS}"
7           title="{'previous_page'|@translate} : {$AK_PREVIOUS.TITLE}"
8           rel="prev">
9          <img src="{$ROOT_URL}{$themeconf.icon_dir}/left.png"
10               class="button" alt="{'previous_page'|@translate}">
11        </a>
12      </td>
13    </tr>
14   
15    <tr class="nline">
16      <td class="ak_pic">
17        <img src="{$AK_PIC_SRC}" alt="{$AK_PIC_ALT}" title="{$AK_PIC_TITLE}" id="akPicture">
18      </td>
19    </tr>
20   
21    <tr class="nline">
22      <td class="ncol">
23        <a id="akNextPicture" class="{if empty($AK_NEXT)}hide {/if}load navButton" href="{$AK_NEXT}"
24           title="{'next_page'|@translate} : {$AK_NEXT.TITLE}"
25           rel="next">
26          <img src="{$ROOT_URL}{$themeconf.icon_dir}/right.png"
27               class="button" alt="{'next_page'|@translate}">
28        </a>
29      </td>
30    </tr>
31  </table>
32</div>
33{/if}
Note: See TracBrowser for help on using the repository browser.