forked from chrissmartin/torq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
22 lines (19 loc) · 1.12 KB
/
header.php
File metadata and controls
22 lines (19 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
echo "<nav class=\"navbar\">
<div class=\"container\">
<!-- 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\">Tor<strong>Q</strong></a> </div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class=\"collapse navbar-collapse\">
<ul style=\"position:relative;float:right;\" class=\"nav navbar-nav\">
<li class=\"active\"><a href=\"index.php\" class=\"nav-button\">Home<span class=\"sr-only\">(current)</span></a> </li>
<li><a href=\"about.php\">About Us</a> </li><li><a href=\"viewall.php\">View all vehicles</a> </li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>";
?>