drbh
commited on
Commit
·
99fe102
1
Parent(s):
43ffb32
fix: add missing index file
Browse files- index.html +24 -0
index.html
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html>
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset='UTF-8'>
|
| 5 |
+
<title>Directory Index</title>
|
| 6 |
+
<style>
|
| 7 |
+
body { font-family: monospace; margin: 20px; }
|
| 8 |
+
h1 { font-size: 1.5em; }
|
| 9 |
+
ul { list-style-type: none; padding-left: 20px; }
|
| 10 |
+
li { margin: 5px 0; }
|
| 11 |
+
.dir { font-weight: bold; }
|
| 12 |
+
.file { color: #0066cc; }
|
| 13 |
+
a { text-decoration: none; }
|
| 14 |
+
a:hover { text-decoration: underline; }
|
| 15 |
+
</style>
|
| 16 |
+
</head>
|
| 17 |
+
<body>
|
| 18 |
+
<h1>Index of /</h1>
|
| 19 |
+
<ul>
|
| 20 |
+
<li><a href='flash_attn/index.html' class='dir'>flash_attn/</a></li>
|
| 21 |
+
<li><a href='moe_benchmarks/index.html' class='dir'>moe_benchmarks/</a></li>
|
| 22 |
+
</ul>
|
| 23 |
+
</body>
|
| 24 |
+
</html>
|