-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (24 loc) · 939 Bytes
/
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
<!DOCTYPE html>
<html ng-app="seaturtleApp">
<head>
<meta charset="utf-8"/>
<title>Sea Turtle Ecology and Population Dynamics</title>
<link rel="shortcut icon" href="images/noaa.ico"/>
<link rel="stylesheet" href="bower_components/font-awesome/css/font-awesome.min.css"/>
<link rel="stylesheet" href="custom/bootstrap.min.css"/>
<link rel="stylesheet" href="css/mystyles.css"/>
</head>
<body>
<main>
<div ui-view="header"></div>
<div ui-view="content"></div>
<div ui-view="footer"></div>
</main>
<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-bootstrap/ui-bootstrap-tpls.min.js"></script>
<script src="scripts/app.js"></script>
<script src="scripts/controllers.js"></script>
<script src="scripts/resize_iframe_parent.js"></script>
</body>
</html>