-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
39 lines (37 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8" />
<title>Diversity Data Dashboard</title>
<link rel="icon" href="resources/favicon.svg" />
<link rel="StyleSheet" href='resources/fonts/open-sans/open-sans.css' type='text/css'>
<link rel="StyleSheet" href="resources/style.css" type="text/css" />
<style>
ul.grid { grid-template-columns: repeat(3, 1fr); margin-top: 1em; margin-bottom: 2em; }
ul.grid li > a { display: block; padding: 1.5em; text-decoration: none; }
</style>
</head>
<body class="b1-bg">
<div id="dashboard">
<header class="padded b1-bg">
<h1>Diversity Dashboards</h1>
</header>
<div class="main doublepadded">
<section>
<ul class="grid">
<li><a href="leeds-city-region/" class="c1-bg"><h2>Leeds City Region Dashboard</h2></a></li>
</ul>
<p>This project started with the Leeds Anchors Network who wanted to create a "diversity dashboard" for the Leeds City Region. To achieve this we co-created a Diversity Data Standard so that organisations could share data - relating to diversity and inclusion - in a common format (a CSV file with common headings). For those organisations who are not used to making spreadsheets we have created a <a href="builder.html">diversity data tool</a> which uses a form to help build the CSV file.</p>
</section>
</div>
<footer class="b1-bg">
<div class="doublepadded">
<section id="sources">
<p>© Open Innovations 2021</p>
</section>
</div>
</footer>
</div>
</body>
</html>