-
Notifications
You must be signed in to change notification settings - Fork 15
/
index.html
executable file
·143 lines (141 loc) · 4.69 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang='en'>
<head>
<title>How's Business?</title>
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
<meta content='text/css' http-equiv='Content-Style-Type'>
<meta content='width=device-width, initial-scale=1.0' name='viewport'>
<meta content='' name='description'>
<meta content='' name='author'>
<!-- Styles -->
<link rel="stylesheet" href="/css/bootstrap.journal.min.css"/>
<link rel="stylesheet" href="/css/bootstrap-responsive.min.css"/>
<link rel="stylesheet" href="/css/custom.css"/>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script type="text/javascript" src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class='container-fluid'>
<div class='page-header'>
<ul class='nav nav-pills pull-right'>
<li class='active'>
<a href='/'>Home</a>
</li>
<li>
<a href='/about'>About</a>
</li>
</ul>
<h1>
<a href='/'>
How's Business?
<small>
A look at the Chicago economy, based on open data
</small>
</a>
</h1>
</div>
<div class='row-fluid'>
<div class='span6 well'>
<h3>
<a href='/about#unemployment'>
Unemployment
<small>
More info
</small>
</a>
</h3>
<p>
Source:
<a href='http://www.bls.gov/lau/'>Bureau of Labor Statistics</a>
|
Trend:
<span class='label label-success'>
Turning around
</span>
</p>
<div class='chart' id='chart_Unemployment'></div>
</div>
</div>
<div class='row-fluid'>
<div class='span6 well'>
<h3>
<a href='/about#building-permits'>
New Construction
<small>
More info
</small>
</a>
</h3>
<p>
Source:
<a href='https://data.cityofchicago.org/Buildings/Building-Permits/ydr8-5enu'>City of Chicago</a>
|
Trend:
<span class='label label-success'>
Holding Steady
</span>
</p>
<div class='chart' id='chart_Building-Permits'></div>
</div>
</div>
<div class='row-fluid'>
<div class='span6 well'>
<h3>
<a href='/about#new-businesses'>
New Business Licenses
<small>
More info
</small>
</a>
</h3>
<p>
Source:
<a href='https://data.cityofchicago.org/Community-Economic-Development/Business-Licenses/r5kz-chrr'>City of Chicago</a>
|
Trend:
<span class='label label-success'>
Holding steady
</span>
</p>
<div class='chart' id='chart_Business-Licenses'></div>
</div>
</div>
<div class='row-fluid'>
<div class='span12'>
<h3>
About this project
</h3>
<p>
<p>
How’s Business provides a view of Chicago’s local economy. It uses open data to show how several economic indicators have been trending since 2005.
<a href='/about'>More »</a>
</p>
</p>
</div>
</div>
</div>
<footer class='footer'>
<div class='container-fluid'>
<hr>
<p>
An <a href='http://opencityapps.org'>Open City</a> project by Daniel Morton, Derek Eder, Forest Gregg and Matt Gee.
</p>
</div>
</footer>
<!-- / raw and trend data. json data defined as a variable -->
<script type="text/javascript" src="import/licenses.js"></script>
<script type="text/javascript" src="import/permits.js"></script>
<!-- = include_javascript "http://bunkum.us/hb_data/foreclosures.js" -->
<script type="text/javascript" src="import/unemployment.js"></script>
<script type="text/javascript" src="import/taxable_sales.js"></script>
<script type="text/javascript" src="import/hpi.js"></script>
<script type="text/javascript" src="/js/jquery.js"></script>
<script type="text/javascript" src="/js/bootstrap.js"></script>
<script type="text/javascript" src="/js/highcharts.js"></script>
<script type="text/javascript" src="/js/chart_helper.js"></script>
<script type="text/javascript" src="/js/app.js"></script>
<script type="text/javascript" src="/js/analytics_lib.js"></script>
</body>
</html>