blob: 1c2caff3a4d5c21b9df3e342bb916be9eeaccf72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{strip}
{if $gGallery}
{bitmodule title="$moduleTitle" name="fisheye_navigation"}
<div class="left">
{if $gGallery->mInfo.previous_image_id}
<a href="{$gContent->getDisplayUrl($gGallery->mInfo.previous_image_id)|escape}">
<img src="{$gGallery->mInfo.previous_image_avatar}" />
<br />
« {tr}previous{/tr}
</a>
{else} {/if}
</div>
<div class="right">
{if $gGallery->mInfo.next_image_id}
<a href="{$gContent->getDisplayUrl($gGallery->mInfo.next_image_id)|escape}">
<img src="{$gGallery->mInfo.next_image_avatar}" />
<br />
{tr}next{/tr} »
</a>
{else} {/if}
</div>
{/bitmodule}
{/if}
{/strip}
|