You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
660 B
42 lines
660 B
12 months ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Custom Directory Listing</title>
|
||
|
<style>
|
||
|
/* Add your custom styles here */
|
||
|
body {
|
||
|
font-family: Arial, sans-serif;
|
||
|
margin: 20px;
|
||
|
}
|
||
|
h1 {
|
||
|
color: #333;
|
||
|
}
|
||
|
ul {
|
||
|
list-style-type: none;
|
||
|
padding: 0;
|
||
|
}
|
||
|
li {
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
a {
|
||
|
text-decoration: none;
|
||
|
color: #1a0dab;
|
||
|
}
|
||
|
a:hover {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<h1>Custom Directory Listing</h1>
|
||
|
|
||
|
<ul>
|
||
|
{files}
|
||
|
</ul>
|
||
|
|
||
|
</body>
|
||
|
</html>
|