-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcredits.html
More file actions
117 lines (112 loc) · 5.36 KB
/
credits.html
File metadata and controls
117 lines (112 loc) · 5.36 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!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;">
<table style="width: 100%; border-collapse: collapse; margin-top: 20px; margin-bottom: 20px;">
<tr>
<th>Directors</th>
<th>Artists</th>
<th>Composers</th>
<th>Programmers</th>
<th>Level Designers</th>
<th>Special Thanks</th>
</tr>
<tr style="text-align: left; vertical-align: text-top;">
<!-- Directors -->
<td>
<ul>
<li><a href="https://www.youtube.com/@thatsacrylic">that's Acrylic</a></li>
<li><a href="https://www.youtube.com/@ForFurtherNotice">ForFurtherNotice</a></li>
</ul>
</td>
<!-- Artists -->
<td>
<ul>
<li><a href="https://bsky.app/profile/samythecoolkid.bsky.social">SamyTheCoolKid</a></li>
<li><a href="https://www.youtube.com/@thatsacrylic">that's Acrylic</a></li>
<li><a href="https://bsky.app/profile/did:plc:2ip4yzowomi26bbvkuv63akd">Flame</a></li>
<li><a href="https://x.com/dustsansxsma">Eight</a></li>
<li><a href="https://www.youtube.com/channel/UCpbsQtiNOEQMLC_XUS5ag9A">SpyDetector99</a></li>
<li>Soru</li>
<li>SS.SoStupid</li>
<li><a href="https://www.youtube.com/channel/UCMWqrcVFpypWYYtgCMWg3qQ">Atom Ikarus Mythoven</a></li>
<li><a href="https://x.com/MitzyArt_">MitzyArt</a></li>
</ul>
</td>
<!-- Composers -->
<td>
<ul>
<li><a href="https://www.youtube.com/@thatsacrylic">that's Acrylic</a></li>
<li><a href="https://www.youtube.com/@ForFurtherNotice">ForFurtherNotice</a></li>
<li><a href="https://www.youtube.com/channel/UC4kcLL9tbLnHNO4gp8Avc6g">Something Funky</a></li>
<li><a href="https://www.youtube.com/@LocalHumanYT">LocalHuman</a></li>
<li><a href="https://tristthemusica.carrd.co/">TristTheMusica</a></li>
<li><a href="https://www.youtube.com/channel/UCPC8U9a_QynXTqxltuER9ZA">Voxd_56</a></li>
<li><a href="https://www.youtube.com/@gnattgnert-real">Gnatt Gnert</a></li>
<li><a href="https://bsky.app/profile/samythecoolkid.bsky.social">SamyTheCoolKid</a></li>
<li><a href="https://x.com/destinynebula">DestinyNebula</a></li>
<li><a href="https://www.youtube.com/@Mahiopool">Mahiopool</a></li>
</ul>
</td>
<!-- Programmers -->
<td>
<ul>
<li><a href="https://www.youtube.com/@thatsacrylic">that's Acrylic</a></li>
<li><a href="https://github.com/ProjectMobius13">PM13</a></li>
<li>Soru</li>
<li><a href="https://www.youtube.com/@Olimac31">Olimac31</a></li>
<li><a href="https://gamebanana.com/members/2387457">BigSillyOrangeCat</a></li>
</ul>
</td>
<!-- Level Designers -->
<td>
<ul>
<li><a href="https://www.youtube.com/@thatsacrylic">that's Acrylic</a></li>
<li><a href="https://www.youtube.com/channel/UCpbsQtiNOEQMLC_XUS5ag9A">SpyDetector99</a></li>
</ul>
</td>
<!-- Special Thanks -->
<td>
<ul>
<li><a href="https://www.sega.com/homepage">SEGA</a></li>
<li><a href="https://sonicthehedgehog.com/">Sonic Team</a></li>
<li><a href="https://github.com/Techokami/SonicWorldsNext">Sonic Worlds Next</a></li>
<li><a href="https://godotengine.org/">Godot Engine</a></li>
<li>The Sonic Fangame Community</li>
</ul>
</td>
</tr>
</table>
<center><p><b>Thank you to all of you for your hard work and dedication to this project!</b></p>
<p style="margin-top: -20px;">And <b>thank you</b> for supporting us! We hope you enjoy the game when it comes out!</p></center>
</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>