-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (36 loc) · 1.9 KB
/
Copy pathindex.html
File metadata and controls
38 lines (36 loc) · 1.9 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
<html ng-app='bakpak'>
<head>
<title> BakPak </title>
<link type="text/css" rel="stylesheet" href="/public/css/materialize.css" media="screen,projection"/>
<link type="text/css" rel="stylesheet" href="/public/css/page.css" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="/public/js/materialize.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-route.js"></script>
</head>
<body ng-controller="exploreController">
<nav>
<div id=navbar class="nav-wrapper">
<a href='/'> <img src="http://i.imgur.com/QfK30Pv.png" id=logo href="#" className="brand-logo" /> </a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li ><a href="/#/explore">EXPLORE</a></li>
<li ><a href="/#/reserve">RESERVE</a></li>
</ul>
</div>
</nav>
<div class="container" id="inputarea">
<LABEL id="label">Where are we going?</LABEL>
<div class="center-align">
<input id="input" type="text" ng-model='city' placeholder="Example: San Francisco, CA" />
<a href="/#/explore" class="waves-effect waves-light btn" ng-click='weatherApi(); restaurantsApi(); artsApi(); promosApi(); eventsApi(); imagesApi()'> EXPLORE </a>
<a href="/#/reserve" class="waves-effect waves-light btn" ng-click="hotelsApi(); imagesApi()">RESERVE </a>
</div>
</div>
</br>
<div ng-view></div>
<script src="/public/app.js"></script>
<script src="/public/bakpakexplore.js"></script>
</body>
</html>