-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
70 lines (67 loc) · 3.08 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
<!DOCTYPE HTML>
<html>
<head>
<title>Pttr - Match.com for Stray Animals</title>
<meta name="description" content="Pttr is the Match.com for stray animals and animal lovers. Love an animal, save a life">
<link rel="stylesheet" type="text/css" href="bower_components/Bootflat/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/format.css">
<script src="bower_components/Bootflat/js/jquery-1.10.1.min.js"></script>
<script src="bower_components/Bootflat/js/bootstrap.min.js"></script>
<script src="bower_components/angular/angular.min.js"></script>
<script src="bower_components/angular-ui-router/release/angular-ui-router.min.js"></script>
<script src="bower_components/angular-route/angular-route.min.js"></script>
<script src="bower_components/angular-bootstrap/ui-bootstrap-tpls.min.js"></script>
<script src="bower_components/firebase/firebase.js"></script>
<script src="bower_components/angularfire/dist/angularfire.min.js"></script>
<script src="js/plugin.js"></script>
<script src="js/main.js"></script>
<script src="app/main/config.js"></script>
<script src="app/firebaseRef/config.js"></script>
<script src="app/firebaseRef/FirebaseRefFactory.js"></script>
<script src="app/userEntity/config.js"></script>
<script src="app/userEntity/AuthService.js"></script>
<script src="app/userEntity/CreateCtrl.js"></script>
<script src="app/userEntity/LoginCtrl.js"></script>
<script src="app/individual/config.js"></script>
<script src="app/individual/individualService.js"></script>
<script src="app/individual/IndividualAuthCtrl.js"></script>
<script src="app/individual/DashboardIndividualCtrl.js"></script>
<script src="app/shelter/config.js"></script>
<script src="app/shelter/ShelterService.js"></script>
<script src="app/shelter/ShelterAuthCtrl.js"></script>
<script src="app/shelter/DashboardShelterCtrl.js"></script>
<script src="app/animal/config.js"></script>
<script src="app/animal/AnimalService.js"></script>
</head>
<body ng-app="pttr">
<ui-view></ui-view>
<footer class="footCust footer">
<div class="container">
<div class="row">
<div class="col-sm-3">
<div class="listLeft pull-left">
<ul>
<li>Home</li>
<li>Mission</li>
<li>About</li>
</ul>
</div>
</div>
<div class="col-sm-5">
<div class="txt_blk">
<p>Copyright © 2014 Pttr All Rights Reserved</p>
</div>
</div>
<div class="col-sm-3">
<div class="listRight pull-right">
<ul>
<li>Facebook</li>
<li>Instagram</li>
<li>Twitter</li>
</ul>
</div>
</div>
</div>
</footer>
</body>
</html>