Newer
Older
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
{if $session->errormsg}
<div class="errorbar">
<div><div><div>
Session: {$session->errormsg}
</div></div></div>
</div>
{/if}
{if $fileerror}
<div class="errorbar">
<div><div><div>
File error: {$fileerror}
</div></div></div>
</div>
{/if}
{if $secondary}
<div id="primary">
{/if}
<div id="primaryC">
{$body}
{if $creatable}
<p>You can <a href="?action=create">create</a> this page though.</p>
{/if}
{if $modified}
<div class="edit">
{if $editable}
<ul>
<li><a href="?action=delete-query">Delete</a></li>
<li><a href="?action=edit">Edit</a></li>
</ul>
<div class="clear"></div>
{/if}
Page last modified{if $modifiedby} by <a href="/Community/Members/{$modifiedby}">{$modifiedby}</a>{/if} on {$modified}
</div>
{/if}
</div>
{if $secondary}
</div>
<div id="secondary">
{$secondary}
</div>
{/if}