forked from codeforkansascity/kc_311dailybrief
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
143 lines (116 loc) · 4.27 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>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<title>311 Daily Brief - Kansas City</title>
<meta name="description" content="">
<meta name="author" content="">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap-theme.min.css">
<!-- Mobile Specific Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS -->
<link rel="stylesheet" href="css/base.css">
<!-- Favicons -->
<!-- Leaflet -->
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.5.1/leaflet.css" />
</head>
<body>
<!-- Primary Page Layout
================================================== -->
<div id="container">
<div class="row" id="header">
<a href=""><img width="200" src="https://lh4.ggpht.com/PWW4fQ2t8A-ARK-gekd3UUMfZKG5x6BJArEv_vUyvjegBdG1RYEjbQ1YvJybsyxfa-U=w300"></a>
</div>
<div class="row" id="message">
<div class="alert alert-info" role="alert"><h2>View Open 311 Requests</h2></div>
</div>
<div class="row" id="filter"></div>
<div class="row leaflet-container leaflet-fade-anim" id="map">
</div>
<div class="row" id="legend">
<div class="col-md-4 legend-info">
<h1>Kansas City</h1>
<!-- Changing the contents of the p tag will not change the tag file.
Go instead to the config file to change the text. -->
<p></p>
</div>
<div class="col-md-4 legend-status active legend-newly-opened">
<h1>Opened Yesterday</h1>
<p><span class="value">0</span> requests</p>
</div>
<div class="col-md-4 legend-status active legend-newly-closed">
<h1>Closed Yesterday</h1>
<p><span class="value">0</span> requests</p>
</div>
</div>
<div class="row" id="summary">
<div class="col-md-12">
<table class="table">
<tr>
<th>Summary</th>
<th>Current</th>
<th>Yesterday</th>
<th>Last Week</th>
</tr>
<tr>
<th>Opened:</th>
<td>999</td>
<td>999</td>
<td>999</td>
</tr>
<tr>
<th>Closed</th>
<td>999</td>
<td>999</td>
<td>999</td>
</tr>
</table>
</div>
</div>
<div class="row" id="links">
<div class="col-md-12">
<ul class="horiz">
<li>Other Sites: </li>
<li><a href="http://maps.kcmo.org/apps/311ServiceRequest/">Submit a 311 Request</a></li>
<li><a href="http://http://kcmo.gov/311/">Basic 311 Info</a></li>
<li><a href="https://data.kcmo.org/311/Daily-Call-Activity-Report/timy-j7ep">Daily Call Activity</a></li>
<li><a href="https://data.kcmo.org/">Open Data KCMO</a></li>
</ul>
</div>
</div>
<div class="row" id="case-info">
</div>
<div class="footer-menu">
<div class="col-md-12">
<img id="kc311-logo" src="images/KC311_logo.png" width="108" height="97" alt="KC311 Logo">
<div class="311_link">
<a href="http://kcmo.gov/311/">
<div><strong>311</strong></div>
<div><strong>KCMO.GOV</strong></div>
</a>
</div>
</div>
</div>
</div>
<!-- JS
================================================== -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="http://cdn.leafletjs.com/leaflet-0.5.1/leaflet.js"></script>
<script src="js/kc_311_map.js"></script>
<!-- End Document
================================================== -->
</body>
</html>