Skip to content

Commit 92df20c

Browse files
Create index.html
1 parent 9e1516a commit 92df20c

1 file changed

Lines changed: 42 additions & 0 deletions

File tree

index.html

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>AMBCT APT Repository</title>
6+
<style>
7+
body {
8+
font-family: monospace;
9+
background: #0f0f0f;
10+
color: #e0e0e0;
11+
padding: 20px;
12+
}
13+
a {
14+
color: #4fc3f7;
15+
text-decoration: none;
16+
}
17+
a:hover {
18+
text-decoration: underline;
19+
}
20+
.folder::before {
21+
content: "📁 ";
22+
}
23+
.file::before {
24+
content: "📄 ";
25+
}
26+
</style>
27+
</head>
28+
<body>
29+
30+
<h2>Index of /</h2>
31+
<hr>
32+
33+
<ul>
34+
<li class="folder"><a href="dists/">dists/</a></li>
35+
<li class="folder"><a href="pool/">pool/</a></li>
36+
</ul>
37+
38+
<hr>
39+
<p>AMBCT Linux Repo</p>
40+
41+
</body>
42+
</html>

0 commit comments

Comments
 (0)