-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathother-versions.html
More file actions
122 lines (112 loc) · 4.88 KB
/
other-versions.html
File metadata and controls
122 lines (112 loc) · 4.88 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
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Other Versions - Silicon Launcher</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="icon.png">
<meta name="description" content="Silicon Launcher - Other Eaglercraft Versions" />
<meta property="og:title" content="Silicon Launcher - Other Versions" />
<meta property="og:image" content="icon.png" />
<meta property="og:description" content="Silicon Launcher - Choose from classic versions" />
<!-- Google Analytics remains the same -->
<script>
document.addEventListener('keydown', function(e) {
// Press ` (backtick) to quickly close tab
if(e.key === '`') {
// Save any necessary data here if needed
window.close();
// Fallback if window.close() is blocked
window.location.replace('about:blank');
}
});
</script>
</head>
<body>
<div id="loading"></div>
<!-- Navigation Bar -->
<nav class="navbar">
<a href="index.html" class="logo">SILICON LAUNCHER</a>
</nav>
<!-- Back Button -->
<div class="back-nav">
<a href="clients.html" class="back-button">← Back</a>
</div>
<!-- Main Content -->
<div class="main-content">
<div class="container">
<h1 class="section-title fade-in">Other Versions</h1>
<div class="game-grid">
<!-- 1.5.2 -->
<div class="game-card fade-in">
<div class="game-info">
<h3 class="game-title">Eaglercraft 1.5.2</h3>
<p class="game-description">Classic Minecraft 1.5.2 experience</p>
<a href="eagler/Eaglercraft-1.5.2-Offline.html" class="play-button">Play Now</a>
</div>
</div>
<!-- 1.2.5 -->
<div class="game-card fade-in">
<div class="game-info">
<h3 class="game-title">Eaglercraft 1.2.5</h3>
<p class="game-description">Vintage Minecraft 1.2.5</p>
<a href="eagler/Eaglercraft-1.2.5-Offline.html" class="play-button">Play Now</a>
</div>
</div>
<!-- Beta 1.7.3 -->
<div class="game-card fade-in">
<div class="game-info">
<h3 class="game-title">Beta 1.7.3</h3>
<p class="game-description">Beta version experience</p>
<a href="eagler/Eaglercraft-Beta-1.7.3-Offline.html" class="play-button">Play Now</a>
</div>
</div>
<!-- Beta 1.3 -->
<div class="game-card fade-in">
<div class="game-info">
<h3 class="game-title">Beta 1.3</h3>
<p class="game-description">Early beta version</p>
<a href="eagler/Eaglercraft-Beta-1.3-Offline.html" class="play-button">Play Now</a>
</div>
</div>
<!-- Alpha 1.2.6 -->
<div class="game-card fade-in">
<div class="game-info">
<h3 class="game-title">Alpha 1.2.6</h3>
<p class="game-description">Alpha version gameplay</p>
<a href="eagler/Eaglercraft-Alpha-1.2.6-Offline.html" class="play-button">Play Now</a>
</div>
</div>
<!-- Indev -->
<div class="game-card fade-in">
<div class="game-info">
<h3 class="game-title">Indev</h3>
<p class="game-description">Early development version</p>
<a href="eagler/Eaglercraft-Indev-Offline.html" class="play-button">Play Now</a>
</div>
</div>
</div>
</div>
</div>
<!-- Scripts -->
<script defer src="/_vercel/insights/script.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.1.3/js/bootstrap.bundle.min.js"></script>
<script src="splash.js"></script>
<script>
splash.onload = myFunction;
</script>
<script>
window.onload = function () {
$('#loading').fadeOut();
}
setTimeout(function () {
$('#loading').fadeOut();
}, 12 * 1000);
</script>
<script src="darkmode.js"></script>
</body>
</html>