summaryrefslogtreecommitdiffstats
path: root/themes/default/templates/single_photo.tpl
blob: c87118a0328db8dd26d92732ccc2043adb6ad16e (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!-- Single photo -->
<div class="content_title" style="text-align: left; float: 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}
</div>
<div class="index_header" style="text-align: right;">
 <a href="javascript:startAutoBrowse();" title="auto browsing"><img id="autobrowse_ico" src="resources/32_play.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>
</div>

<div>
 <div id="photo_details" style="float: right; margin-top: 20px; margin-right: 20px;">
   { 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);" id="prev_link">
     <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>

 <div style="text-align: left; margin-top: 20px; margin-left: 20px;">
 { if $next_url == "" }
  <a href="javascript:showPhotoIndex();" onclick="click(this);">
 { else }
  <a href="{$next_url}" onclick="click(this);" title="click for the next photo"> 
 { /if }
   <img src="{$image_url}" width="{$width}" height="{$height}" alt="photo" />
  </a>
 </div>

 <div style="margin-left: 20px;">
  { if $previous_url == "" }
   <img src="resources/arrow_left_gray.png" alt="first photo reached" />
  { else }
   <a href="{$previous_url}" onclick="click(this);" title="click for the previous photo">
    <img src="resources/arrow_left.png" alt="previous photo" />
   </a>
  { /if }
   <a href="javascript:showPhotoIndex({$current});" onclick="click(this);" title="click to go back to the index">
    <img src="resources/arrow_up.png" alt="photo index" />
   </a>
  { if $next_url == "" }
   <img src="resources/arrow_right_gray.png" alt="last photo reached" />
  { else }
   <a href="{$next_url}" onclick="click(this);" title="click for the next photo"> 
    <img src="resources/arrow_right.png" alt="next photo" />
   </a>
  { /if}
 </div>
</div>
<!-- /Single photo -->