summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2005-11-22 07:25:48 +0000
committerMax Kremmel <xing@synapse.plus.com>2005-11-22 07:25:48 +0000
commit71866708351b4afcf2788e9d14b09648ae2344a5 (patch)
tree92dc917773700ec3b1f204761a2d861a199f999c /modules
parentdafea8f5bb826fba9321e08ec18ab3bdddac19e1 (diff)
downloadfisheye-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.tpl26
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 />
+ &laquo;&nbsp;{tr}previous{/tr}
+ </a>
+ {else}&nbsp;{/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}&nbsp;&raquo;
+ </a>
+ {else}&nbsp;{/if}
+ </div>
+ {/bitmodule}
+{/if}
+{/strip}
+