source: extensions/akBookStyle/trunk/ak_reloaded_image.tpl @ 3759

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

move first files in trunk

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 1.1 KB
Line 
1        {if !empty($AK_PIC_SRC) }
2        <div id="reload">
3                <table class="picture">
4                        <tr class="nline">
5                          <td class="ncol"> {* will be an include *}
6                                        {if isset($AK_PREVIOUS) }
7
8                                          <a class="{$AK_PREVIOUS.load} navButton" href="{$AK_PREVIOUS.U_PIC}"
9                                                  title="{'previous_page'|@translate} : {$AK_PREVIOUS.TITLE}"
10                                                        rel="prev">
11                                          <img src="{$ROOT_URL}{$themeconf.icon_dir}/left.png"
12                                                        class="button" alt="{'previous_page'|@translate}">
13                                                        </a>
14                                        {/if}
15                          </td>
16                        </tr>
17                       
18                        <tr class="nline">
19                          <td class="ncol"> {* will be an include *}
20                                          <img src="{$AK_PIC_SRC}" alt="{$AK_PIC_ALT}" title="{$AK_PIC_TITLE}">
21                          </td>
22                        </tr>
23                       
24                        <tr class="nline">
25                          <td class="ncol"> {* will be an include *}
26                                        {if !empty($AK_NEXT) }
27                                          <a class="{$AK_NEXT.load} navButton" href="{$AK_NEXT.U_PIC}"
28                                                  title="{'next_page'|@translate} : {$AK_NEXT.TITLE}"
29                                                        rel="next">
30                                          <img src="{$ROOT_URL}{$themeconf.icon_dir}/right.png"
31                                                        class="button" alt="{'next_page'|@translate}">
32                                                        </a>
33                                        {/if}
34                          </td>
35                        </tr>
36                </table>
37        </div>
38        {/if}
Note: See TracBrowser for help on using the repository browser.