-
Notifications
You must be signed in to change notification settings - Fork 0
/
navbar.php
30 lines (27 loc) · 1.2 KB
/
navbar.php
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
<?php
$file = substr($_SERVER["SCRIPT_NAME"], 9);
?>
<head>
<style>
.navbar-custom .navbar-brand {
background-color: "orange";
}
</style>
</head>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<div class="navbar-brand">
<a class="navbar-brand" href="planner.php">UVA Student Course Planner</a>
</div>
<div class="collapse navbar-collapse">
<ul class="navbar-nav mr-auto">
<li class="nav-item <?php if($file=="planner.php"){echo "active";}?>"><a class="nav-link" href="planner.php">My Planner</a></li>
<li class="nav-item <?php if($file=="requirements.php"){echo "active";} ?>"><a class="nav-link" href="requirements.php">Degree Requirements</a></li>
<li class="nav-item <?php if($file=="search.php"){echo "active";} ?>"><a class="nav-link" href="search.php">Search Courses</a></li>
</ul>
<ul class="navbar-nav my-2 my-lg-0">
<li class="nav-item <?php if($file=="settings.php"){echo "active";} ?>"><a class="nav-link" href="settings.php">Settings</a></li>
</ul>
</div>
</div>
</nav>