forked from DannyDelott/HowsTheWeather
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (28 loc) · 848 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
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>How's The Weather</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="container">
<div id="app"></div>
</div>
<!-- Libraries -->
<script src="lib/underscore-min.js"></script>
<script src="lib/jquery-min.js"></script>
<script src="lib/backbone-min.js"></script>
<!-- Models/Collections -->
<script src="js/models/WeatherEntry.js"></script>
<script src="js/collections/Weather.js"></script>
<!-- Views -->
<script src="js/views/AppView.js"></script>
<script src="js/views/TitleView.js"></script>
<script src="js/views/InputView.js"></script>
<script src="js/views/ListView.js"></script>
<script src="js/views/EntryView.js"></script>
<!-- Launch App -->
<script src="js/app.js"></script>
</body>
</html>