forked from lineofflight/the-placeholder-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 1.25 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>The placeholder site</title>
<link rel="stylesheet" href="https://fonts.xz.style/serve/inter.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@exampledev/new.css@latest/new.min.css"
/>
<script>
document.addEventListener("DOMContentLoaded", function () {
const domain = window.location.hostname || "example.com";
const godaddyLink = document.querySelector('a[href*="godaddy.com"]');
godaddyLink.href = `https://www.godaddy.com/domainsearch/find?domainToCheck=${domain}`;
});
</script>
</head>
<body>
<header>
<h1>The placeholder site</h1>
<nav>
<a href="https://github.com/lineofflight/the-placeholder-site"
>GitHub</a
>
</nav>
</header>
<p>This is a placeholder for a future project.</p>
<p>
Have another idea?
<a href="https://www.godaddy.com">Buy the domain.</a>
</p>
<a href="https://lineofflig.ht"
><img
src="lineofflight.jpg?v={{ site.time | date: '%s' }}"
alt="Line of Flight"
width="40"
/></a>
</body>
</html>