-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathhelp.php
More file actions
70 lines (62 loc) · 2.15 KB
/
help.php
File metadata and controls
70 lines (62 loc) · 2.15 KB
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
<?php
// open and load site variables
require('../config.php');
// open and print header template
require('header.php');
?>
<div class="left-column">
<div class="link-menu" style="">
<a href="#basic-search-tips">Basic search tips</a>
<a href="#advanced-search-tips">Advanced search tips</a>
<a href="#notification">Notification</a>
</div>
</div>
<div class="center-column" style="padding-right: 0;">
<h1>
Help
</h1>
<h3 id="basic-search-tips" class="contentheading" style="margin-top: 8px; line-height: 1.25em;">Basic search tips</h3>
<p>
And some useful text would appear here.
And some useful text would appear here.
And some useful text would appear here.
And some useful text would appear here.
And some useful text would appear here.
And some useful text would appear here.
And some useful text would appear here.
And some useful text would appear here.
And some useful text would appear here.
And some useful text would appear here.
</p>
<h3 id="advanced-search-tips" class="contentheading" style="margin-top: 8px; line-height: 1.25em;">Advanced search tips</h3>
<p>
And some useful text would appear here.
And some useful text would appear here.
And some useful text would appear here.
And some useful text would appear here.
And some useful text would appear here.
And some useful text would appear here.
And some useful text would appear here.
And some useful text would appear here.
And some useful text would appear here.
And some useful text would appear here.
</p>
<h3 id="notification" class="contentheading" style="margin-top: 8px; line-height: 1.25em;">Notification</h3>
<p>
And some useful text would appear here.
And some useful text would appear here.
And some useful text would appear here.
And some useful text would appear here.
And some useful text would appear here.
And some useful text would appear here.
And some useful text would appear here.
And some useful text would appear here.
And some useful text would appear here.
And some useful text would appear here.
</p>
</div><!-- END OF center-column -->
<!--<div style="background-color: #fcc; color: #fff; clear: both;">test</div>-->
<?php
//open and print page footer template
require('footer.php');
?>