-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patharchive.html
More file actions
79 lines (77 loc) · 3.65 KB
/
Copy patharchive.html
File metadata and controls
79 lines (77 loc) · 3.65 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Sonic Eclipse - Official Website</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="./favicon.ico" type="image/x-icon">
</head>
<body>
<main>
<div id="header-placeholder"></div>
<div class="body" style="width: 71%; margin: auto; text-align: left; padding-left: 20px; padding-top: 5px;">
<p>
<strong>Welcome to the Sonic Eclipse Archive!</strong> Here you will find a collection of previous versions, and other content related to the game's development.
</p>
<hr/>
<h2>Previous Versions</h2>
<!-- Table -->
<table style="width: 100%; border-collapse: collapse; margin-top: 20px;">
<tr>
<th>File</th>
<th>Description</th>
<th>Download</th>
<th>Date</th>
</tr>
<tr>
<td>Alpha 1</td>
<td>The very first archived version of Sonic Eclipse</td>
<td><a href="https://www.dropbox.com/scl/fi/o6xondbxxk4k59ob9lkex/2802.zip?rlkey=bsl3zmv2b34yfs747lvp9138n&st=jqpphj2j&dl=1">Download</a></td>
<td>2024-02-28</td>
</tr>
<tr>
<td>Alpha 2</td>
<td>The second archived version of Sonic Eclipse</td>
<td><a href="https://www.dropbox.com/scl/fi/z4bs0r610hx115epjvtv5/0208.zip?rlkey=qaz5jzd4h2rkc3iv6l74wco6l&st=asmmqph1&dl=1">Download</a></td>
<td>2024-08-02</td>
</tr>
<tr>
<td>Demo 0</td>
<td>The very first public demo of Sonic Eclipse</td>
<td><a href="https://www.dropbox.com/scl/fi/t3d7kx3jkk6smmb4s0gov/2408.zip?rlkey=u86zsi9jo135dkiu02s8inp3n&st=r9lmb3cw&dl=1">Download</a></td>
<td>2024-08-24</td>
</tr>
<tr>
<td>Demo 1 - Speedrun Update</td>
<td>The second version of the public demo of Sonic Eclipse from SAGE 2024</td>
<td><a href="https://www.dropbox.com/scl/fi/3zr6kfe1vhs6ovzhufdn4/speedrun-update.zip?rlkey=hstakrs0mituy8hjxu2a1zlvs&st=m4d8czvc&dl=1">Download</a></td>
<td>2024-09-12</td>
</tr>
</table>
<hr style="margin-top: 14.5vw;"/>
<p style="margin-top: 1.6vw;">
<b>Check back regularly for new-old downloads!</b>
</p>
</div>
<div id="footer-placeholder"></div>
</main>
<script>
// Check if we can use fetch
if (window.fetch) {
fetch('header.html')
.then(response => response.text())
.then(data => document.getElementById('header-placeholder').innerHTML = data)
.catch(error => console.error('Error loading header:', error));
fetch('footer.html')
.then(response => response.text())
.then(data => document.getElementById('footer-placeholder').innerHTML = data)
.catch(error => console.error('Error loading footer:', error));
} else {
console.error('Fetch API not supported in this browser.');
}
</script>
<!--<script src="index.js"></script>-->
</body>
</html>