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

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

Bug 1159: fix
Medium image are loaded in ajax mode.

File size: 894 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}" title="{'previous_page'|@translate}{* : {$AK_PREVIOUS.TITLE}*}" rel="prev">
7          <img src="{$ROOT_URL}{$themeconf.icon_dir}/left.png" class="button" alt="{'previous_page'|@translate}">
8        </a>
9      </td>
10
11      <td class="ak_pic">
12        <img src="{$AK_PIC_SRC}" alt="{$AK_PIC_ALT}" title="{$AK_PIC_TITLE}" id="akPicture">
13      </td>
14      <td class="ncol">
15        <a id="akNextPicture" class="{if empty($AK_NEXT)}hide {/if}load navButton" href="{$AK_NEXT}" title="{'next_page'|@translate}{* : {$AK_NEXT.TITLE}*}" rel="next">
16          <img src="{$ROOT_URL}{$themeconf.icon_dir}/right.png" class="button" alt="{'next_page'|@translate}">
17        </a>
18      </td>
19    </tr>
20  </table>
21</div>
22{/if}
Note: See TracBrowser for help on using the repository browser.