-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,66 +1,27 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta http-equiv="Content-Security-Policy" content=" | ||
default-src 'self'; | ||
font-src 'self' https://fonts.gstatic.com; | ||
style-src 'self' https://fonts.googleapis.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" /> | ||
<title>Holding Page</title> | ||
<style> | ||
body { | ||
font-family: 'Open Sans', sans-serif; | ||
background: #f5f5f5; | ||
color: #333; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
height: 100vh; | ||
margin: 0; | ||
} | ||
h1 { | ||
font-size: 2rem; | ||
color: #555; | ||
} | ||
</style> | ||
</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 incredibly talented people I’ve had the privilege to call my colleagues and friends at the Mozilla Foundation. Please take a moment to browse their profiles, share this page, and support these amazing folks in finding their next role.</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">Open to Relocation</button> | ||
</div> | ||
<div class="filter-item"> | ||
<button id="remote-filter" class="filter-button">Open to Remote Roles</button> | ||
</div> | ||
</div> | ||
<div id="directory-grid"> | ||
<!-- Directory items will be populated here --> | ||
</div> | ||
</div> | ||
<h1>Nothing to see here</h1> | ||
</body> | ||
</html> | ||
</html> |