-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmenu.php
More file actions
71 lines (55 loc) · 1.8 KB
/
Copy pathmenu.php
File metadata and controls
71 lines (55 loc) · 1.8 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
$pageName = 'menu';
include('_header.php');
?>
<nav id="primary-nav">
<ul>
<li id="about" >
<a href="nav.php?nav=about">About</a>
</li>
<li id="academics">
<a href="nav.php?p=academics">Academics</a>
</li>
<li id="admissions-aid">
<a href="nav.php?p=admissions-aid">Admissions & Aid</a>
</li>
<li id="arts">
<a href="nav.php?p=arts">Arts</a>
</li>
<li id="athletics">
<a href="nav.php?p=athletics">Athletics</a>
</li>
<li id="campus-life">
<a href="nav.php?p=campus-life">Campus Life</a>
</li>
<li id="news-events">
<a href="nav.php?p=news-events">News & Events</a>
</li>
<li id="service-faith">
<a href="nav.php?p=service-faith">Service & Faith</a>
</li>
</ul>
</nav>
<nav id="secondary-nav">
<ul>
<li id="future-students">
<a href="nav.php?p=future-students" title="">Future Students</a>
</li>
<li id="students">
<a href="nav.php?p=students" title="">Students</a>
</li>
<li id="faculty">
<a href="nav.php?p=faculty" title="">Faculty</a>
</li>
<li id="staff">
<a href="nav.php?p=staff" title="">Staff</a>
</li>
<li id="parents">
<a href="nav.php?p=parents" title="">Parents</a>
</li>
<li id="alumni">
<a href="nav.php?p=alumni" title="">Alumni</a>
</li>
</ul>
</nav>
<?php include('_footer.php'); ?>