-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuilds.html
More file actions
138 lines (121 loc) · 4.38 KB
/
builds.html
File metadata and controls
138 lines (121 loc) · 4.38 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="techguy16, et al">
<meta name="keywords" content="alpha, Αlphα λibrary, beta, beta collection, beta archive, windows beta, pre release, longhorn">
<meta name="description"
content="Browse Αlphα λibrary's library of free to download betas, including Windows. All free, no sign up required!">
<title>Αlphα λibrary - Beta library</title>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JC2D49JR80"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-JC2D49JR80');
</script>
<link href="style.css" rel="stylesheet">
<style>
/* Table styling */
#builds {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}
#builds th,
#builds td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
#builds th {
background-color: #f2f2f2;
}
/* Dropdown container */
#dropdown-container {
margin-bottom: 20px;
}
/* Dropdown with icon */
#beta-selector-container,
#category-selector-container {
position: relative;
width: 290px;
}
#beta-selector,
#category-selector {
width: 100%;
height: 40px;
font-size: 16px;
padding-left: 40px;
background: url('img/default-icon.png') no-repeat 10px center;
background-size: 24px;
border: 1px solid #ccc;
border-radius: 5px;
}
#beta-selector option {
padding-left: 40px;
height: 40px;
}
/* Other download options styling */
#other-download-options {
margin-top: 15px;
}
.ui-dialog { width: 320px; }
</style>
</head>
<body>
<div id="navbar">
<table>
<tr>
<th><a href='index.html' id="home" style="color:blue;">Αlphα λibrary</a></th>
<td><a href='https://github.com/alphalibraryweb/'><img src="img/fa-icon/github.svg"></a></td>
<td><a href='https://discord.gg/ZBaB7h3AFb'><img src='img/fa-icon/discord.svg'></a></td>
<td><a href='about.html'><img src='img/fa-icon/about.svg'><span>About</span></a></td>
<td><a href='builds.html'><img src='img/fa-icon/library.svg'><span>Library</span></a></td>
<td><a href='https://alphalibrary.miraheze.org'><img src='img/fa-icon/wiki.svg'><span>Wiki</span></a></td>
</tr>
</table>
</div>
<div id="main">
<div id="dropdown-container" style="overflow-x: auto;">
<table>
<tr>
<td>
<div id="category-selector-container">
Category:
<select id="category-selector"></select>
</div>
</td>
<td>
<div id="beta-selector-container">
Software:
<select id="beta-selector"></select>
</div>
</td>
</tr>
</table>
</div>
<div style="overflow-x: auto;">
<table id="builds">
<thead>
<tr>
<th>Channel</th>
<th>Build</th>
<th>Compiled Date</th>
<th>Downloads</th>
</tr>
</thead>
<tbody id="build-list"></tbody>
</table>
</div>
<div id="download-modal" title="Downloads">
<div class="modal-content" style="text-align:center;"></div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="viewer.js"></script>
</body>
</html>