-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (100 loc) · 3.19 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My GitHub Pages Site</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f4f4f4;
}
.container {
text-align: left;
padding: 20px;
background-color: white;
border: 1px solid #ccc;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
}
ul {
list-style-type: none;
padding-left: 0;
}
li {
margin-bottom: 8px;
}
a {
color: #007BFF;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to My GitHub Pages Site</h1>
<p>This is a simple static site hosted on GitHub Pages.</p>
<p>Browse the files and directories below:</p>
<ul>
<li><strong>pool</strong></li>
<li><strong>conf</strong></li>
<li><strong>dists</strong></li>
<li><strong>db</strong></li>
<li><strong>logs</strong></li>
</ul>
<ul>
<li><strong>main</strong></li>
</ul>
<ul>
<li><strong>w</strong></li>
</ul>
<ul>
<li><strong>wave420l</strong></li>
<li><strong>wave511</strong></li>
</ul>
<ul>
<li><a href="root/pool/main/w/wave420l/wave420l_1.0-1-OK1_riscv64.deb">wave420l_1.0-1-OK1_riscv64.deb</a></li>
</ul>
<ul>
<li><a href="root/pool/main/w/wave511/wave511_1.0-1-OK1_riscv64.deb">wave511_1.0-1-OK1_riscv64.deb</a></li>
</ul>
<ul>
<li><a href="root/conf/distributions">distributions</a></li>
</ul>
<ul>
<li><strong>starfive-sid</strong></li>
</ul>
<ul>
<li><strong>main</strong></li>
<li><a href="root/dists/starfive-sid/Release">Release</a></li>
</ul>
<ul>
<li><strong>binary-riscv64</strong></li>
</ul>
<ul>
<li><a href="root/dists/starfive-sid/main/binary-riscv64/Packages.gz">Packages.gz</a></li>
<li><a href="root/dists/starfive-sid/main/binary-riscv64/Release">Release</a></li>
<li><a href="root/dists/starfive-sid/main/binary-riscv64/Packages">Packages</a></li>
</ul>
<ul>
<li><a href="root/db/release.caches.db">release.caches.db</a></li>
<li><a href="root/db/contents.cache.db">contents.cache.db</a></li>
<li><a href="root/db/version">version</a></li>
<li><a href="root/db/packages.db">packages.db</a></li>
<li><a href="root/db/checksums.db">checksums.db</a></li>
<li><a href="root/db/references.db">references.db</a></li>
</ul>
<ul>
<li><a href="root/logs/starfive-sid.log">starfive-sid.log</a></li>
</ul>
</div>
</body>
</html>