2024-09-09 11:12:57 +02:00
|
|
|
<!DOCTYPE html>
|
2024-09-09 21:47:21 +02:00
|
|
|
<html lang="en" class="dark-mode">
|
2024-09-09 11:12:57 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2024-09-09 21:47:21 +02:00
|
|
|
<title>Folder Content</title>
|
2024-09-09 11:12:57 +02:00
|
|
|
<style>
|
2024-09-09 21:47:21 +02:00
|
|
|
/* Copy the entire style section from content.html */
|
|
|
|
/* ... */
|
2024-09-09 21:23:37 +02:00
|
|
|
.file-list {
|
2024-09-09 11:12:57 +02:00
|
|
|
list-style-type: none;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2024-09-09 21:23:37 +02:00
|
|
|
.file-list li {
|
2024-09-09 21:47:21 +02:00
|
|
|
margin-bottom: 10px;
|
2024-09-09 21:23:37 +02:00
|
|
|
}
|
2024-09-09 11:12:57 +02:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
2024-09-09 21:47:21 +02:00
|
|
|
<h1>Folder: {{ current_folder }}</h1>
|
|
|
|
<div class="button-container">
|
|
|
|
<a href="{{ download_all_url }}"><button>Download All</button></a>
|
2024-09-09 21:23:37 +02:00
|
|
|
</div>
|
|
|
|
<ul class="file-list">
|
2024-09-09 11:12:57 +02:00
|
|
|
{% for file in files %}
|
2024-09-09 21:47:21 +02:00
|
|
|
<li><a href="{{ file.url }}">{{ file.name }}</a></li>
|
2024-09-09 11:12:57 +02:00
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
2024-09-09 21:47:21 +02:00
|
|
|
<div class="button-container">
|
2024-09-09 21:23:37 +02:00
|
|
|
{% if prev_url %}
|
2024-09-09 21:47:21 +02:00
|
|
|
<a href="{{ prev_url }}"><button>Previous</button></a>
|
2024-09-09 21:23:37 +02:00
|
|
|
{% endif %}
|
|
|
|
{% if next_url %}
|
2024-09-09 21:47:21 +02:00
|
|
|
<a href="{{ next_url }}"><button>Next</button></a>
|
2024-09-09 21:23:37 +02:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
2024-09-09 11:12:57 +02:00
|
|
|
</div>
|
2024-09-09 21:47:21 +02:00
|
|
|
|
|
|
|
<button id="theme-toggle">Toggle Theme</button>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
// Copy the script section from content.html, but remove the copyToClipboard function
|
|
|
|
// ...
|
|
|
|
</script>
|
2024-09-09 11:12:57 +02:00
|
|
|
</body>
|
|
|
|
</html>
|