-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (36 loc) · 1.51 KB
/
index.html
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height" />
<title>Caduceus USA iOS App</title>
<link href="css/reset.css" rel="stylesheet" type="text/css" />
<link href="css/animate.css" rel="stylesheet" type="text/css" />
<link href="css/structure.css" rel="stylesheet" type="text/css" />
<link href="css/boilerplate.css" rel="stylesheet" type="text/css" />
<link href="css/icon.css" rel="stylesheet" type="text/css" />
<script src="node_modules/angular/angular.min.js" type="text/javascript"></script>
<script src="node_modules/angular-route/angular-route.min.js" type="text/javascript"></script>
<script src="node_modules/jquery/dist/jquery.min.js" type="text/javascript"></script>
<script src="js/app.js" type="text/javascript"></script>
</head>
<body ng-app="iOS">
<header ng-controller="headerCtrl">
<div class="menu">
<span ng-click="nav_toggle('menu')">☰</span>
</div>
<aside class="fl-left" datasrc="menu" flyout></aside>
<div class="logo">
<a href="/ios/" alt="Back to Home">
<img src="img/Caduceus-USA-Official-Logo.png" alt="Caduceus USA" />
</a>
</div>
<div class="options">
<span ng-click="nav_toggle('options')">⚙</span>
</div>
<aside class="fl-right" datasrc="options" flyout></aside>
</header>
<main ng-view></main>
<footer ng-controller="footCtrl"></footer>
</body>
</html>