blob: a415fd74764da3ca8c0ed2cc67ea998e83dd586a (
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="pull-left">
{if $gGallery->mInfo.previous_image_id}
<a href="{$gContent->getImageUrl($gGallery->mInfo.previous_image_id)|escape}">
<img src="{$gGallery->mInfo.previous_image_avatar}" />
<br />
« {tr}previous{/tr}
</a>
{else} {/if}
</div>
<div class="pull-right">
{if $gGallery->mInfo.next_image_id}
<a href="{$gContent->getImageUrl($gGallery->mInfo.next_image_id)|escape}">
<img src="{$gGallery->mInfo.next_image_avatar}" />
<br />
{tr}next{/tr} »
</a>
{else} {/if}
</div>
{/bitmodule}
{/if}
{/strip}
|