-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
77 lines (60 loc) · 2.75 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
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
<!DOCTYPE html>
<html lang="en" ng-app="mainApp">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Antojo de</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"/>
<link rel="stylesheet" href="css/icon-set-food/pe-icon-set-food.css">
<link rel="stylesheet" href="css/font-awesome/font-awesome.min.css">
<link rel="stylesheet" href="scss/styles.css">
</head>
<body>
<header>
<div class="container">
<nav ng-controller="index">
<!-- Collect the nav links, forms, and other content for toggling -->
<h1><a ng-click="resetParams()">Antojo de</a></h1>
</nav>
</div><!-- /.container -->
</header>
<ng-view></ng-view>
<footer>
<p>© AntojoDe 2017</p>
<small>By: Marc Vergara, Aleix Ordeig & Alex Mallén</small>
</footer>
<!-- cdn angular, jquery, bootsrap -->
<script src="https://code.jquery.com/jquery-2.2.4.js" integrity="sha256-iT6Q9iMJYuQiMWNd9lDyBUStIq/8PuOW33aOqmvFpqI=" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.5/angular.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.3/angular-route.min.js"></script>
<!-- ng-map -->
<script src="https://rawgit.com/allenhwkim/angularjs-google-maps/master/build/scripts/ng-map.js"></script>
<script src="https://maps.google.com/maps/api/js?key=AIzaSyAhyrUu_PtMSQtmzYnKrw20REVLuRtpzuw&libraries=placeses,visualization,drawing,geometry,places"></script>
<!-- main module -->
<script src="js/app.js"></script>
<!-- dataServices -->
<script src="js/services/dataService.js"></script>
<!-- home-controller -->
<script src="js/home-controller/controller.js"></script>
<!-- list -->
<script src="js/routes/list/controller.js"></script>
<script src="js/routes/list/index.js"></script>
<!-- map -->
<script src="js/routes/map/controller.js"></script>
<script src="js/routes/map/index.js"></script>
<!-- home -->
<script src="js/routes/home/controller.js"></script>
<script src="js/routes/home/index.js"></script>
<!-- search -->
<script src="js/routes/search/controller.js"></script>
<script src="js/routes/search/index.js"></script>
<!-- categories -->
<script src="js/routes/categories/controller.js"></script>
<script src="js/routes/categories/index.js"></script>
<!-- detail -->
<script src="js/routes/detail/controller.js"></script>
<script src="js/routes/detail/index.js"></script>
</body>
</html>