diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2007-07-20 17:59:03 +0000 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2007-07-20 17:59:03 +0000 |
commit | 005562e4a4fb2b37fc6f1d4a8ca4a9c11ab42ed1 (patch) | |
tree | c7b99f7229c044b75c5754dc162c3633528724e4 /templates | |
parent | 51ab51f6a487cd793e523aebb61ed43c2b7314bf (diff) |
issue46, first slideshow implementation
git-svn-id: file:///var/lib/svn/phpfspot/trunk@225 fa6a889d-dae6-447d-9e79-4ba9a3039384
Diffstat (limited to 'templates')
-rw-r--r-- | templates/photo_index.tpl | 3 | ||||
-rw-r--r-- | templates/slideshow.tpl | 13 |
2 files changed, 16 insertions, 0 deletions
diff --git a/templates/photo_index.tpl b/templates/photo_index.tpl index 1590f85..bc7e5d1 100644 --- a/templates/photo_index.tpl +++ b/templates/photo_index.tpl @@ -30,6 +30,9 @@ {/if} </td> <td class="index_header" style="text-align: right"> + {if $slideshow_link } + <a href="{$slideshow_link}" title="Slideshow" target="_blank">Slideshow</a> + {/if} {if $extern_link } <a href="{$extern_link}" title="Use this link to return to the current view"><img src="resources/link.png" /></a> {/if} diff --git a/templates/slideshow.tpl b/templates/slideshow.tpl new file mode 100644 index 0000000..a41a018 --- /dev/null +++ b/templates/slideshow.tpl @@ -0,0 +1,13 @@ +{include file="header.tpl"} + <body onload="startSlideShow();"> + <div id="frame"> + <table> + <tr> + <td> + <img id="slide_img" alt="slideshow_img" /> + </td> + </tr> + </table> + </div> + </body> +{include file="footer.tpl"} |