2022-09-09 16:23:24 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
2022-12-24 20:49:01 -05:00
|
|
|
<link rel="stylesheet" type="text/css" href="/css/fonts.css" />
|
2022-12-26 18:20:22 -05:00
|
|
|
<title>Elijah Dunemask | Fullstack Development</title>
|
|
|
|
<meta
|
|
|
|
name="description"
|
|
|
|
content="Specializing in DevOps tools and code reliability to improve developer velocity."
|
|
|
|
/>
|
|
|
|
<meta
|
|
|
|
name="og:description"
|
|
|
|
content="Specializing in DevOps tools and code reliability to improve developer velocity."
|
|
|
|
/>
|
|
|
|
<meta name="og:title" content="Elijah Dunemask | Fullstack Development" />
|
|
|
|
<meta name="og:site_name" content="dunemask.net" />
|
|
|
|
<meta name="og:url" content="dunemask.net" />
|
|
|
|
<meta name="og:type" content="website" />
|
|
|
|
<meta name="og:image" content="/images/og.jpg" />
|
|
|
|
<meta name="author" content="Elijah Parker (Dunemask)" />
|
|
|
|
<meta
|
|
|
|
name="keywords"
|
|
|
|
content="Web Developer React, Fullstack Development, Web Developer Portfolio, Elijah Parker, Dunemask, React Developer, QA Software Developer"
|
|
|
|
/>
|
2022-09-09 16:23:24 -04:00
|
|
|
<link
|
|
|
|
rel="apple-touch-icon"
|
|
|
|
sizes="180x180"
|
2023-02-03 13:25:41 +00:00
|
|
|
href="/favicons/apple-touch-icon.png?v=jan27deltaburn"
|
2022-09-09 16:23:24 -04:00
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="icon"
|
|
|
|
type="image/png"
|
|
|
|
sizes="32x32"
|
2023-02-03 13:25:41 +00:00
|
|
|
href="/favicons/favicon-32x32.png?v=jan27deltaburn"
|
2022-09-09 16:23:24 -04:00
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="icon"
|
|
|
|
type="image/png"
|
|
|
|
sizes="16x16"
|
2023-02-03 13:25:41 +00:00
|
|
|
href="/favicons/favicon-16x16.png?v=jan27deltaburn"
|
2022-09-09 16:23:24 -04:00
|
|
|
/>
|
2023-02-03 13:25:41 +00:00
|
|
|
<link rel="manifest" href="/favicons/site.webmanifest?v=jan27deltaburn" />
|
2022-09-09 16:23:24 -04:00
|
|
|
<link
|
|
|
|
rel="mask-icon"
|
2023-02-03 13:25:41 +00:00
|
|
|
href="/favicons/safari-pinned-tab.svg?v=jan27deltaburn"
|
2022-09-09 16:23:24 -04:00
|
|
|
color="#ffc40d"
|
|
|
|
/>
|
2023-02-03 13:25:41 +00:00
|
|
|
<link rel="shortcut icon" href="/favicons/favicon.ico?v=jan27deltaburn" />
|
2022-09-09 16:23:24 -04:00
|
|
|
<meta name="msapplication-TileColor" content="#ffc40d" />
|
|
|
|
<meta
|
|
|
|
name="msapplication-config"
|
2023-02-03 13:25:41 +00:00
|
|
|
content="/favicons/browserconfig.xml?v=jan27deltaburn"
|
2022-09-09 16:23:24 -04:00
|
|
|
/>
|
|
|
|
<meta name="theme-color" content="#5d5d5d" />
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<noscript>You need to enable JavaScript to view this site.</noscript>
|
2022-12-24 20:49:01 -05:00
|
|
|
<div id="loading">
|
|
|
|
<header>
|
|
|
|
<h3>Dunemask</h3>
|
|
|
|
</header>
|
|
|
|
<div class="loading-content">
|
|
|
|
<div class="loading-content-wrapper">
|
2023-03-19 13:52:45 -04:00
|
|
|
<img src="/images/phx-nano.png" class="loading-content-media" />
|
2023-02-03 13:25:41 +00:00
|
|
|
<div id="loading-content-media-cover"></div>
|
2022-12-24 20:49:01 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<h1 class="loading-content-subtitle">Loading</h1>
|
|
|
|
</div>
|
2022-09-09 16:23:24 -04:00
|
|
|
<div id="root"></div>
|
2022-12-24 20:49:01 -05:00
|
|
|
<style>
|
|
|
|
body {
|
2023-02-03 13:25:41 +00:00
|
|
|
background: linear-gradient(to bottom, #eee, #fff 20%);
|
2022-12-24 20:49:01 -05:00
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
#loading > header {
|
|
|
|
background-color: black;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 64px;
|
|
|
|
color: white;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#loading .loading-content {
|
|
|
|
display: flex;
|
|
|
|
z-index: -1;
|
|
|
|
overflow: hidden;
|
|
|
|
justify-content: center;
|
|
|
|
margin-top: 5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#loading .loading-content-wrapper {
|
|
|
|
height: 100%;
|
|
|
|
text-align: center;
|
|
|
|
max-width: 1024px;
|
2023-02-03 13:25:41 +00:00
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
2022-12-24 20:49:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#loading .loading-content-media {
|
2023-02-03 13:25:41 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2022-12-24 20:49:01 -05:00
|
|
|
max-height: 100vh;
|
|
|
|
max-width: 1024px;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
2023-02-03 13:25:41 +00:00
|
|
|
#loading-content-media-cover {
|
|
|
|
position: absolute;
|
|
|
|
min-width: 100%;
|
|
|
|
min-height: 100%;
|
|
|
|
bottom: 0px;
|
|
|
|
background-color: #fff;
|
|
|
|
-webkit-animation: load 2s ease;
|
|
|
|
animation: load 2s ease;
|
|
|
|
-webkit-animation-iteration-count: infinite;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
animation-direction: normal;
|
|
|
|
-webkit-animation-direction: normal;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-12-24 20:49:01 -05:00
|
|
|
#loading .loading-content-subtitle {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2023-02-03 13:25:41 +00:00
|
|
|
|
|
|
|
@keyframes load {
|
|
|
|
15% {
|
|
|
|
min-height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
30% {
|
|
|
|
min-height: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
min-height: 0px;
|
|
|
|
}
|
|
|
|
}
|
2022-12-24 20:49:01 -05:00
|
|
|
</style>
|
2023-02-03 13:25:41 +00:00
|
|
|
<script>
|
|
|
|
function loaderInitScript() {
|
|
|
|
function showLoader() {
|
|
|
|
const mediaCover = document.getElementById(
|
|
|
|
"loading-content-media-cover"
|
|
|
|
);
|
|
|
|
mediaCover.style.display = "block";
|
|
|
|
}
|
|
|
|
|
|
|
|
function onDocumentStateChange(e) {
|
|
|
|
if (document.readyState === "interactive")
|
|
|
|
setTimeout(showLoader, 2000);
|
|
|
|
}
|
|
|
|
document.addEventListener("readystatechange", onDocumentStateChange);
|
|
|
|
}
|
|
|
|
loaderInitScript();
|
|
|
|
</script>
|
2022-09-09 16:23:24 -04:00
|
|
|
<script type="module" src="/src/App.jsx"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|