diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2005-11-22 07:25:48 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2005-11-22 07:25:48 +0000 |
| commit | 71866708351b4afcf2788e9d14b09648ae2344a5 (patch) | |
| tree | 92dc917773700ec3b1f204761a2d861a199f999c /modules | |
| parent | dafea8f5bb826fba9321e08ec18ab3bdddac19e1 (diff) | |
| download | fisheye-71866708351b4afcf2788e9d14b09648ae2344a5.tar.gz fisheye-71866708351b4afcf2788e9d14b09648ae2344a5.tar.bz2 fisheye-71866708351b4afcf2788e9d14b09648ae2344a5.zip | |
merge recent changes into HEAD
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/mod_navigation.tpl | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/modules/mod_navigation.tpl b/modules/mod_navigation.tpl new file mode 100644 index 0000000..1c2caff --- /dev/null +++ b/modules/mod_navigation.tpl @@ -0,0 +1,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} + |
