feat: impl /parked-domains
This commit is contained in:
parent
0a29b1b7e0
commit
11b8e9c47f
1 changed files with 31 additions and 0 deletions
31
public/parked-domains/index.html
Normal file
31
public/parked-domains/index.html
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>IXVD - Home</title>
|
||||||
|
<link rel="stylesheet" href="/obj/css/main.css">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<main>
|
||||||
|
<h1>Parked Domains</h1>
|
||||||
|
<a href="/">Home</a>
|
||||||
|
<p>
|
||||||
|
You found one of our parked domains! <br/>
|
||||||
|
For more details on <span id="domain">the domain</span>, please e-mail: <br/>
|
||||||
|
<strong>domains (at) ixvd (dot) net</strong>
|
||||||
|
</p>
|
||||||
|
<script>
|
||||||
|
let domainSpan = document.querySelector("#domain");
|
||||||
|
let searchParams = new URLSearchParams(document.location.search);
|
||||||
|
if (searchParams.has("domain")) {
|
||||||
|
domainSpan.innerText = searchParams.get("domain")
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</main>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in a new issue