summaryrefslogtreecommitdiffstats
path: root/templates/single_photo.tpl
blob: adeb9f85e3173e410bbc0ae22e7b82e52a46f5a4 (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
<!-- Single photo -->
<table>
 <tr>
  <td class="index_header" style="text-align: left;">
   <b>Photo {$image_name}</b><br />
   &nbsp;{$description}<br />
  </td>
  <td class="index_header" style="text-align: right;">
   <a href="{$image_url_full}" target="_blank" onclick="click(this);">
    <img src="resources/original.png" />
   </a>
   <img src="resources/information.png" />
  </td>
 </tr>
 <tr>
  <td colspan="2">
   <div id='single'>
   <table>
    <tr>
     <td colspan="3">
     { if $next_url == "" }
      <a href="javascript:showPhotoIndex();">
     { else }
      <a href="{$next_url}"> 
     { /if }
       <img src="{$image_url}" width="{$width}" height="{$height}" />
      </a>
     </td>
    </tr>
    <tr>
     <td style="text-align: left; width: 33%;">
      { if $previous_url == "" }
       &nbsp;
      { else }
      <a href="{$previous_url}">
       <img src="resources/arrow_left.png" />
      </a>
      { /if }
     </td>
     <td style="text-align: center; width: 33%;">
      <a href="javascript:showPhotoIndex();">
       <img src="resources/arrow_up.png" />
      </a>
     </td>
     <td style="text-align: right; width: 33%;">
      { if $next_url == "" }
      &nbsp;
      { else }
      <a href="{$next_url}"> 
       <img src="resources/arrow_right.png" />
      </a>
      { /if}
     </td>
    </tr>
   </table>
   </div>
  </td>
  <td style="white-space: nowrap;">
   { if $ExifMadeWith }
   With: {$ExifMadeWith}<br />
   { /if }
   { if $ExifMadeOn }
   On: {$ExifMadeOn}<br />
   { /if }
   { if $ExifOrigResolution }
   Res: {$ExifOrigResolution}<br />
   { /if }
   Size: {$ExifFileSize}kbyte<br />
   Tagged:<br />
   { foreach from=$tags key=id item=name }
   <a href="javascript:Tags('add', '{$id}');" onclick="click(this);">{$name}</a><br />
   { /foreach }
  </td>
 </tr>
</table>
<!-- /Single photo -->