-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (38 loc) · 682 Bytes
/
index.html
File metadata and controls
42 lines (38 loc) · 682 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>AMBCT APT Repository</title>
<style>
body {
font-family: monospace;
background: #0f0f0f;
color: #e0e0e0;
padding: 20px;
}
a {
color: #4fc3f7;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.folder::before {
content: "📁 ";
}
.file::before {
content: "📄 ";
}
</style>
</head>
<body>
<h2>Index of /</h2>
<hr>
<ul>
<li class="folder"><a href="dists/">dists/</a></li>
<li class="folder"><a href="pool/">pool/</a></li>
</ul>
<hr>
<p>AMBCT Linux Repo</p>
</body>
</html>