-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (49 loc) · 1.52 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
<!DOCTYPE html>
<html>
<head>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="app.js"></script>
<script src="company.js"></script>
<link rel="stylesheet" href="app.css">
<link rel="shortcut icon" href="favicon.ico" />
<meta charset="utf-8">
<title>
Parental Leave
</title>
</head>
<body>
<div class="container">
<h1>A comparison of paid parental leave policies</h1>
<p>
A visualization of crowd-sourced, self-reported information on various parental leave policies at companies.
See <a href="https://github.com/davedash/parental-leave">here</a> for more info on data collection;
click graph items for more details on specific companies.
</p>
<hr>
<div class="graph"></div>
<table class="spotlight hidden">
<thead>
<tr>
<th>Name</th>
<th>Maternity</th>
<th>Paternity</th>
<th colspan="2">Notes</th>
<th>Source</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr>
<td id="name">Not given</td>
<td id="maternity">Not given</td>
<td id="paternity">Not given</td>
<td colspan="2" id="notes">Not given</td>
<td><a id="source" href=""></a></td>
<td id="date">Not given</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>