blob: c4378b281ac97bf6be0feb0bd373fb00428d76f4 (
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('{$web_path}');">
<!-- loading -->
<div id="HTML_AJAX_LOADING">
<img src="{$web_path}/resources/loading.gif" style="vertical-align: middle;" alt="Loading..." /> Loading...
</div>
<!-- top menu -->
<div class="menu">
<div class="icons">
<a href="javascript:showPhotoIndex();" onclick="click(this);" title="Show Photo Index (CTRL+ALT+i)">
photo index
</a>
<a href="javascript:resetAll();" onclick="click(this);" title="Reset selected-tags and search results (CTRL+ALT+r)">
reset tags
</a>
<a href="javascript:showCredits();" onclick="click(this);" title="Show's a little credit page">
about
</a>
</div>
<div class="logo"> {$page_title}</div>
</div>
<!-- /top menu -->
<div style="clear: both;">
<!-- option column -->
<div class="options" style="float: left;">
<div>
{include file="search.tpl"}
</div>
<div id="tags">
{include file="tags.tpl"}
</div>
</div>
<!-- /option column -->
<!-- content column -->
<div id="content" class="content">
{ $initial_content }
</div>
</div>
{include file="footer.tpl"}
|