-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
87 lines (76 loc) · 4.46 KB
/
header.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<!--[if IEMobile 7 ]> <html class="no-js iem7"> <![endif]-->
<!--[if (gt IEMobile 7)|!(IEMobile)]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<title>Goal Guide</title>
<meta name="description" content="">
<meta http-equiv="cleartype" content="on">
<!-- For device.js -->
<link rel="alternate" href="goals.php" id="desktop"
media="only screen and (touch-enabled: 0)">
<link rel="alternate" href="mobile.goals.php" id="phone"
media="only screen and (max-device-width: 640px)">
<link rel="alternate" href="goals.php" id="tablet"
media="only screen and (min-device-width: 641px)">
<meta name="viewport" content="width=device-width">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="images/touch/apple-touch-icon-144x144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="images/touch/apple-touch-icon-114x114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="images/touch/apple-touch-icon-72x72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="images/touch/apple-touch-icon-57x57-precomposed.png">
<link rel="shortcut icon" href="images/touch/apple-touch-icon.png">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" type="text/css" href="css/fonts/fonts.css" />
<link rel="stylesheet" type="text/css" href="css/fonts/icomoon.css" />
<link rel="stylesheet" href="css/main.css">
<!-- All JavaScript at the bottom, except Device.js and this Modernizr build incl. Respond.js
Respond is a polyfill for min/max-width media queries. Modernizr enables HTML5 elements & feature detects;
for optimal performance, create your own custom Modernizr build: www.modernizr.com/download/ -->
<!-- <script src="js/modernizr-2.6.1.min.js"></script>-->
<script src="js/vendor/device.min.js"></script>
<script>
if (device.mobile()) {
window.location.href = 'http://www.cognitopia.com/goalguide/mobile.goals.php';
}
</script>
</head>
<body>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an outdated browser. <a href="http://browsehappy.com/">Upgrade your browser today</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to better experience this site.</p>
<![endif]-->
<!--[if lt IE 9]>
<script src="scripts/vendor/es5-shim.min.js"></script>
<script src="scripts/vendor/json3.min.js"></script>
<![endif]-->
<div id="wrapper" class="container">
<header id="mainheader">
</header>
<div id="logout">
<button type="button" id="logoutbutton" class="btn btn-success btn-medium">Logout</button>
</div>
<nav id="main-nav" role="navigation">
<div class="navbar">
<div class="navbar-inner">
<div class="container">
<!-- .btn-navbar is used as the toggle for collapsed navbar content -->
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<!-- Be sure to leave the brand out there if you want it shown -->
<!--<a class="brand" href="#">We're Gettin' Outta the House!</a>-->
<div class="nav-collapse">
<ul class="nav">
<!-- <li id="home" class="active"><a href="index.php"><i class="fa-large icon-home" ></i> Home</a></li>-->
<li id="students"><a href="students.php"><i class="fa-large icon-user green" ></i> Students</a></li>
<li id="goals"><a href="goals.php"><i class="fa-large icon-star green" ></i> Goals</a></li>
<!-- <li id="about"><a href="advocates.php"><i class="icon-user blue" ></i>Advocates</a></li> -->
<!-- <li id="about"><a href="#"><i class="fa-large icon-leaf" ></i> About</a></li>-->
<!-- <li id="contact"><a href="#"><i class="fa-large icon-phone" ></i> Contact</a></li>-->
</ul>
</div> <!-- end nav-collapse -->
</div> <!-- end container for the icon bar -->
</div> <!-- end navbar-inner -->
</div> <!-- end navbar -->
</nav> <!-- end main-nav -->