58 lines
1.3 KiB
HTML
58 lines
1.3 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Folder</title>
|
||
|
<style>
|
||
|
body {
|
||
|
font-family: Arial, sans-serif;
|
||
|
background-color: #121212;
|
||
|
color: #e0e0e0;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
height: 100vh;
|
||
|
}
|
||
|
.container {
|
||
|
background: #1e1e1e;
|
||
|
border-radius: 8px;
|
||
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
|
||
|
padding: 20px;
|
||
|
width: 400px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
h1 {
|
||
|
margin-bottom: 20px;
|
||
|
color: #f5f5f5;
|
||
|
}
|
||
|
ul {
|
||
|
list-style-type: none;
|
||
|
padding: 0;
|
||
|
}
|
||
|
li {
|
||
|
margin: 10px 0;
|
||
|
}
|
||
|
a {
|
||
|
color: #61afef;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
a:hover {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container">
|
||
|
<h1>Folder</h1>
|
||
|
<ul>
|
||
|
{% for file in files %}
|
||
|
<li><a href="{{ file.url }}">{{ file.name }}</a></li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|