summaryrefslogtreecommitdiffstats
path: root/themes/default/templates/single_photo.tpl
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2007-07-22 05:49:09 +0000
committerAndreas Unterkircher <unki@netshadow.at>2007-07-22 05:49:09 +0000
commit75a329ec022ef21019afb17aecf776a10083e0cb (patch)
treebd9b22ce6004ac2f11ac189e39cc75bf1439b13a /themes/default/templates/single_photo.tpl
parent5369d6897b8d04f8733b852a16639b949077b0b8 (diff)
issue61, theme support
git-svn-id: file:///var/lib/svn/phpfspot/trunk@237 fa6a889d-dae6-447d-9e79-4ba9a3039384
Diffstat (limited to 'themes/default/templates/single_photo.tpl')
-rw-r--r--themes/default/templates/single_photo.tpl110
1 files changed, 110 insertions, 0 deletions
diff --git a/themes/default/templates/single_photo.tpl b/themes/default/templates/single_photo.tpl
new file mode 100644
index 0000000..bb8c917
--- /dev/null
+++ b/themes/default/templates/single_photo.tpl
@@ -0,0 +1,110 @@
+<!-- Single photo -->
+<table>
+ <tr>
+ <td class="content_title" style="text-align: left;">
+ <b>Photo {$image_name}</b><br />
+ {if $photo_count > 0}
+ {$photo_number} of {$photo_count}
+ {if $photo_count == 1}
+ Photo
+ {else}
+ Photos
+ {/if}
+ {if $description}
+ &nbsp;{$description}<br />
+ {/if}
+ {/if}
+ </td>
+ <td class="index_header" style="text-align: right;">
+ <a href="javascript:autoBrowse();"><img src="resources/slideshow.png" /></a>
+ {if $extern_link }
+ <a href="{$extern_link}" title="Use this link to return to the current view"><img src="resources/link.png" /></a>
+ {/if}
+ <a href="{$image_url_full}" target="_blank" onclick="click(this);">
+ <img src="resources/original.png" alt="original resolution" />
+ </a>
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <div id='single'>
+ <table>
+ <tr>
+ <td colspan="3">
+ { if $next_url == "" }
+ <a href="javascript:showPhotoIndex();" onclick="click(this);">
+ { else }
+ <a href="{$next_url}" onclick="click(this);">
+ { /if }
+ <img src="{$image_url}" width="{$width}" height="{$height}" alt="photo" />
+ </a>
+ </td>
+ </tr>
+ <tr>
+ <td style="text-align: left; width: 33%;">
+ { if $previous_url == "" }
+ <img src="resources/arrow_left_gray.png" alt="first photo reached" />
+ { else }
+ <a href="{$previous_url}" onclick="click(this);">
+ <img src="resources/arrow_left.png" alt="previous photo" />
+ </a>
+ { /if }
+ </td>
+ <td style="text-align: center; width: 33%;">
+ <a href="javascript:showPhotoIndex({$current});" onclick="click(this);">
+ <img src="resources/arrow_up.png" alt="photo index" />
+ </a>
+ </td>
+ <td style="text-align: right; width: 33%;">
+ { if $next_url == "" }
+ <img src="resources/arrow_right_gray.png" alt="last photo reached" />
+ { else }
+ <a href="{$next_url}" onclick="click(this);" id="next_img" >
+ <img src="resources/arrow_right.png" alt="next photo" />
+ </a>
+ { /if}
+ </td>
+ </tr>
+ </table>
+ </div>
+ </td>
+ <td style="width: 150px; padding-top: 20px;">
+ <div id="photo_details">
+ { if $ExifMadeWith }
+ <u><img src="resources/camera.png" alt="camera icon" />&nbsp;Image taken with:</u><br />
+ {$ExifMadeWith}<br />
+ { /if }
+ { if $ExifMadeOn }
+ <u><img src="resources/date.png" alt="calendar icon" />&nbsp;Image made on:</u><br />
+ {$ExifMadeOn}<br />
+ { /if }
+ { if $ExifOrigResolution }
+ <u><img src="resources/image.png" alt="resolution icon" />&nbsp;Original resolution:</u><br />
+ {$ExifOrigResolution}<br />
+ { /if }
+ <u>Size:</u>&nbsp;{$ExifFileSize}<br />
+ { if $tags }
+ <br />
+ <u><img src="resources/small_available_tags.png" alt="available tags" />&nbsp;Tagged with:</u><br />
+ { foreach from=$tags key=id item=name }
+ <a class="smalltag" href="javascript:Tags('add', '{$id}');" onclick="click(this);" onclick="click(this);">{$name}</a><br />
+ { /foreach }
+ { /if }
+ <hr>
+ { if $prev_img }
+ <u><img src="resources/photo.png" alt="photo icon" />&nbsp;Previous:</u><br />
+ <a href="{$previous_url}" onclick="click(this);">
+ <img src="phpfspot_img.php?idx={$prev_img}&amp;width={$mini_width}" /><br />
+ </a>
+ { /if}
+ { if $next_img }
+ <u><img src="resources/photo.png" alt="photo icon" />&nbsp;Next:</u><br />
+ <a href="{$next_url}" onclick="click(this);" id="next_link">
+ <img src="phpfspot_img.php?idx={$next_img}&amp;width={$mini_width}" /><br />
+ </a>
+ { /if}
+ </div>
+ </td>
+ </tr>
+</table>
+<!-- /Single photo -->