-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.html
49 lines (38 loc) · 1.64 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
<!DOCTYPE html>
<html>
<head>
<title>Chicago Crime API Example Site</title>
<!-- Twitter bootstrap -->
<link rel="stylesheet" type="text/css" href="lib/bootstrap-2.3.1/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="lib/bootstrap-2.3.1/css/bootstrap-responsive.min.css" />
<link rel="stylesheet" type="text/css" href="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/7.3/styles/github.min.css" />
<!-- Application CSS -->
<link rel="stylesheet" type="text/css" href="css/style.css" />
<!-- HTML5 shim -->
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- These are required for responsiveness and consistent rendering -->
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--
Define some run-time configuration variables. Tweak these to use your
own data source.
// -->
<script type="text/javascript">
CRIME_API_BASE_URL = "http://crime.chicagotribune.com/api/1.0-beta1/";
</script>
<!--
Load RequireJS. The `data-main` attribute specifies the file
RequireJS will use as an entry point, such as `js/main.js`. Basic
configuration and application loading happens there.
// -->
<script data-main="js/main" src="http://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.4/require.js"></script>
</head>
<body>
<!--
Because this project uses the single page app pattern, ALL body rendering
is handled by Backbone. What are you waiting for? Start hacking on js/main.js!
//-->
</body>
</html>