-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
68 lines (64 loc) · 3.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Security-Policy" content="
default-src 'self';
font-src 'self' https://fonts.gstatic.com https://fonts.googleapis.com;
style-src 'self' https://fonts.googleapis.com https://fonts.gstatic.com;
img-src 'self';
script-src 'self';
connect-src 'self' https://docs.google.com https://*.googleusercontent.com;
">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<script defer src="script.js"></script>
<title>Mozilla Foundation Talent Directory</title>
<meta name="description" content="" />
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="Mozilla Foundation Talent Directory" />
<meta itemprop="description" content="" />
<meta itemprop="image" content="https://mofo.directory/og-image.png" />
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://mofo.directory/" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Mozilla Foundation Talent Directory" />
<meta property="og:description" content="" />
<meta property="og:image" content="https://mofo.directory/og-image.png" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Mozilla Foundation Talent Directory" />
<meta name="twitter:description" content="" />
<meta name="twitter:image" content="https://mofo.directory/og-image.png" />
</head>
<body>
<div class="container">
<div class="mt-5">
<h1>Mozilla Foundation Talent Directory</h1>
<p class="my-4"> This directory showcases some of the individuals who have worked at Mozilla Foundation. Please take a moment to browse their profiles, share this page, and support these amazing folks in finding their next role.
The information provided in this directory has been provided by the individuals listed. To add your information to the directory, <a href="https://docs.google.com/forms/d/e/1FAIpQLSfqqCYQYycyIVrJfzjX1VayDeh4GjOq_FB9I3Rg3WUUftVcvQ/viewform">click here</a>. The data is stored within Mozilla Foundation's GDrive. To request deletion of your information, please email <a href="mailto:[email protected]">[email protected]</a>.</p>
</div>
<div class="filters">
<div class="filter-item">
<select class="native-dropdown" id="location-dropdown">
<option value="">All Locations</option>
</select>
</div>
<div class="filter-item">
<select class="native-dropdown" id="team-dropdown">
<option value="">All Teams</option>
</select>
</div>
<div class="filter-item">
<button id="relocation-filter" class="filter-button relocation">Open to Relocation</button>
</div>
<div class="filter-item">
<button id="remote-filter" class="filter-button remote">Open to Remote Roles</button>
</div>
</div>
<div id="directory-grid">
<!-- Directory items will be populated here -->
</div>
</div>
</body>
</html>