-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavbar.php
56 lines (55 loc) · 4.94 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
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
<nav class="navbar navbar-default navbar-fixed-top navbar-inverse">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.php" id="icon"><img src="img/icon.png" alt="GOPA Icon" /></a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li <?php if($current == 'home') {echo 'class="active"';} ?>><a href="index.php">Home</a></li>
<li <?php if($current == 'about') {echo 'class="active"';} ?>><a href="about.php">About Us</a></li>
<li <?php if($current == 'committee') {echo 'class="active"';} ?>><a href="committee.php">Board</a></li>
<li <?php if($current == 'contact') {echo 'class="active"';} ?>><a href="contact.php">Contact Us</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Projects <span class="caret"></span></a>
<ul class="dropdown-menu">
<li <?php if($current == 'nativecarvings') {echo 'class="active"';} ?>><a href="nativecarvings.php">Native Carvings</a></li>
<li <?php if($current == 'littleheroes') {echo 'class="active"';} ?>><a href="littleheroes.php">Little Heroes</a></li>
<li <?php if($current == 'birdboxesbyrico') {echo 'class="active"';} ?>><a href="birdboxesbyrico.php">Bird Boxes by Rico</a></li>
<li <?php if($current == 'birdboxesbymadison') {echo 'class="active"';} ?>><a href="birdboxesbymadison.php">Bird Boxes by Madison</a></li>
<li <?php if($current == 'hollydale') {echo 'class="active"';} ?>><a href="hollydale.php">Hollydale Nature Garden</a></li>
<li <?php if($current == 'marketplacemurals') {echo 'class="active"';} ?>><a href="marketplacemurals.php">Rockwood Marketplace Murals</a></li>
<li <?php if($current == 'mandarinduck') {echo 'class="active"';} ?>><a href="mandarinduck.php">Mandarin Duck</a></li>
<li <?php if($current == 'littlelibrary') {echo 'class="active"';} ?>><a href="littlelibrary.php">Little Library</a></li>
<li <?php if($current == 'sundayatthecarnegie') {echo 'class="active"';} ?>><a href="sundayatthecarnegie.php">Sunday at the Carnegie</a></li>
<li <?php if($current == 'blessournest') {echo 'class="active"';} ?>><a href="blessournest.php">Bless Our Nest Statue</a></li>
<li <?php if($current == 'imagine') {echo 'class="active"';} ?>><a href="imagine.php">Imagine</a></li>
<li <?php if($current == 'teddybear') {echo 'class="active"';} ?>><a href="teddybear.php">Teddy Bear Statue</a></li>
<li <?php if($current == 'toddkirnan') {echo 'class="active"';} ?>><a href="toddkirnan.php">Todd Kirnan's Statue</a></li>
<li <?php if($current == 'bikerack') {echo 'class="active"';} ?>><a href="bikerack.php">Vintage Style Bike Racks</a></li>
<li <?php if($current == 'blue') {echo 'class="active"';} ?>><a href="blue.php">Blue</a></li>
<li <?php if($current == 'berryharvest') {echo 'class="active"';} ?>><a href="berryharvest.php">Berry Harvest Mural</a></li>
<li <?php if($current == 'nadakanaturepark') {echo 'class="active"';} ?>><a href="nadakanaturepark.php">Nadaka Nature Park</a></li>
<li <?php if($current == 'driscoll') {echo 'class="active"';} ?>><a href="driscoll.php">Driscoll</a></li>
<li <?php if($current == 'mural') {echo 'class="active"';} ?>><a href="mural.php">Main Street Mural</a></li>
<li <?php if($current == 'crash') {echo 'class="active"';} ?>><a href="crash.php">Crash</a></li>
<li <?php if($current == 'familyties') {echo 'class="active"';} ?>><a href="familyties.php">Family Ties</a></li>
<li role="separator" class="divider"></li>
<li <?php if($current == 'whatsnew') {echo 'class="active"';} ?>><a href="whatsnewwithgopa.php">What's new with GOPA?</a></li>
</ul>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="https://www.instagram.com/greshamoutdoorpublicart/" target="_blank"><img src="img/instagram.png" alt="instagram logo" width="24" height="24"></a> </li>
<li><a href="https://www.facebook.com/GreshamOutdoorPublicArt/" target="_blank"><img src="img/facebook.png" alt="facebook logo" width="24" height="24"></a> </li>
<li <?php if($current == 'donate') {echo 'class="active"';} ?>><a href="donate.php" id="donate">Donate!</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>