forked from CommunityData/chicagodata.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
99 lines (93 loc) · 2.84 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>ChicagoData.org</title>
<link rel="icon" href="css/icons/favicon.ico" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php include 'php/home-links.php'; ?>
<style type="text/css">
h4 {
text-align: center;
}
.thumbnail {
padding: 0px;
margin-top: 20px;
}
.home-row {
background-color: #EEEEEE;
width: 100%;
}
#banner {
background-image: url(css/images/dark_tint.png), url(css/images/skyline2.png);
background-position: center center;
background-size: cover;
padding: 6em 0em 6em;
text-align: center;
}
#banner :last-child {
margin-bottom: 0;
}
#banner h2 {
color: #ffffff;
font-size: 4em; font-size: 6vw;
line-height: 1em;
margin: 0 0 0 0;
padding: 0;
}
#banner h3 {
color: #ffffff;
font-size: 1.5em; font-size: 3vw;
font-weight: 200;
}
</style>
</head>
<body>
<?php include 'php/header.php'; ?>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12">
<section id="banner">
<h2>ChicagoData.org</h2>
<h3>Explore your community through data</h3>
</section>
</div>
</div>
<div class="container-fluid home-row">
<div class="row">
<div class="col-md-12">
<div class="row">
<div class="col-md-4 col-sm-4 col-xs-12">
<div class="thumbnail">
<h4>
Crime Dashboards
</h4>
<a href="crime/monthly.php"><img alt="Crime Reports" src="css/images/crime_db.png" style="padding-bottom:21px;"/></a>
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-12">
<div class="thumbnail">
<h4>
311 Dashboards
</h4>
<a href="311/graffiti-monthly.php"><img alt="311 Reports" src="css/images/311_db.png" style="padding-bottom:8px;"/></a>
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-12">
<div class="thumbnail">
<h4>
Business Dashboards
</h4>
<a href="business/monthly.php"><img alt="Business Licenses" src="css/images/business_db.png" style="padding-bottom:19px;"/></a>
</div>
</div>
</div>
</div>
</div>
</div>
<?php include 'php/footer.php'; ?>
<!-- script type="text/javascript" src="js/d3.v3.min.js"></script -->
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
</body>
</html>