blob: d8a5b30099154f56370ddb1da60f760d9ec202c0 (
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
|
<!-- Single photo -->
<table>
<tr>
<td class="index_header" style="text-align: left;">
<b>Photo {$image_name}</b>, {$c_date}, {$madewith}<br />
</td>
<td class="index_header" style="text-align: right;">
<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;">
{ if $previous_url == "" }
{ else }
<a href="{$previous_url}">
<img src="resources/arrow_left.png" />
</a>
{ /if }
</td>
<td> </td>
<td style="text-align: right;">
{ if $next_url == "" }
{ else }
<a href="{$next_url}">
<img src="resources/arrow_right.png" />
</a>
{ /if}
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
<!-- /Single photo -->
|