-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinner_header.php
More file actions
50 lines (40 loc) · 1.75 KB
/
Copy pathinner_header.php
File metadata and controls
50 lines (40 loc) · 1.75 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
<?php
include('conn.php');
?>
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<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="./">Travel Blog</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"><strong>
</strong>
<ul class="nav navbar-nav">
<li>
<a href="./dashboard.php">Dashboard</a>
</li>
<li>
<a href="my_adventures.php">My Adventures</a>
</li>
<li>
<a href="./post_adventure">Post Adventure</a>
</li>
<li>
<a href="./profile.php">Profile</a>
</li>
<li>
<a href="./signout.php">Sign Out</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>