blob: 4aee6cfbb9df5bbec3390f5548b331a321c35a3c (
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
|
{include file="header.tpl"}
<body onload="init_phpfspot();">
<div class="logo" colspan="2">
{$page_title}
</div>
<div class="menu">
<a href="javascript:showPhotoIndex();" onclick="click(this);" title="Show Photo Index">
<img src="resources/photo_index.png" alt="photo index" />
</a>
<a href="javascript:resetAll();" onclick="click(this);" title="Reset selected-tags and search results">
<img src="resources/reload.png" alt="reset tags" />
</a>
<a href="javascript:showCredits();" onclick="click(this);" title="Show's a little credit page">
<img src="resources/credits.png" alt="show credits" />
</a>
</div>
<table>
<tr>
<td class="options">
<table>
<tr>
<td>
{include file="search.tpl"}
</td>
</tr>
<tr>
<td>
<div id="tags">
{include file="tags.tpl"}
</div>
</td>
</tr>
</table>
</td>
<td class="content">
<div id="content">
{include file="welcome.tpl"}
</div>
</td>
</tr>
</table>
<div style="text-align: right; font-size: 10px; color: #000000; margin-right: 10px;">
Licensed under GPLv3, <a href="http://oss.netshadow.at/oss/phpfspot/Project" style="font-size: 10px; color: #000000">phpfspot</a>
</div>
</body>
{include file="footer.tpl"}
|