summaryrefslogtreecommitdiff
path: root/static/drive.html
diff options
context:
space:
mode:
authorLyssa2026-03-04 13:45:19 +0000
committerLyssa2026-03-04 13:45:19 +0000
commit1ad107c713db7d0923a3fdb69d36b39c7b5f32f5 (patch)
tree093266dd30157b7abb70248ea5e9bc5a89405056 /static/drive.html
parenta0dfe26ad845dd5452cc39b810c74742568d26aa (diff)
downloadmassgrave.dev-1ad107c713db7d0923a3fdb69d36b39c7b5f32f5.zip
Remove broken download links
We can no longer afford to host ISOs for older versions of Windows. We recommend getting those ISOs from other sources and checking them against known-good hashes. The Genuine Installation Media page has instructions for doing this.
Diffstat (limited to 'static/drive.html')
-rw-r--r--static/drive.html41
1 files changed, 0 insertions, 41 deletions
diff --git a/static/drive.html b/static/drive.html
deleted file mode 100644
index c6c405d..0000000
--- a/static/drive.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <meta charset="utf-8">
- <title>MASSGRAVE Drive 💀</title>
- <link rel="stylesheet" href="css/water.min.css">
- </head>
- <body>
- <h1>📂 MASSGRAVE Drive</h1>
- <p>Welcome to MASSGRAVE Drive! You can find your requested file below.</p>
-
- <h2 style="word-break:break-all" id="file-title">💾 Loading...</h2>
-
- <p>Please click <i>Download file</i> to download the requested file.</p>
-
- <form method="GET" action="" id="download-form">
- <button type="submit">Download file</button>
- </form>
-
- <footer>© <span id="year"></span> <a href="https://massgrave.dev">MASSGRAVE</a> 💀</footer>
-
- <script>
- document.getElementById('year').textContent = new Date().getFullYear();
-
- const hash = window.location.hash.substring(1);
- const filename = decodeURIComponent(hash);
-
- if (filename) {
- document.title = filename + ' | MASSGRAVE Drive';
- document.getElementById('file-title').textContent = '💾 ' + filename;
-
- const baseUrl = atob('aHR0cHM6Ly9hcmNoaXZlLmlzZG4ubmV0d29yay93aW5kb3dzLw');
- const downloadUrl = baseUrl + encodeURIComponent(filename)
- document.getElementById('download-form').action = downloadUrl;
- } else {
- document.getElementById('file-title').textContent = '💾 No file specified';
- document.querySelector('button[type="submit"]').disabled = true;
- }
- </script>
- </body>
-</html> \ No newline at end of file