1
0
forked from cgcristi/aCloud
aCloudGaborV77/templates/file.html

30 lines
806 B
HTML

<!DOCTYPE html>
<html lang="en" class="dark-mode">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>File Content</title>
<style>
/* Copy the entire style section from content.html */
/* ... */
</style>
</head>
<body>
<div class="container">
<h1>File: {{ name }}</h1>
<p>Size: {{ size }} bytes</p>
<p>Modified at: {{ modified_at }}</p>
<div class="button-container">
<a href="{{ url }}" download><button>Download File</button></a>
</div>
</div>
<button id="theme-toggle">Toggle Theme</button>
<script>
// Copy the script section from content.html, but remove the copyToClipboard function
// ...
</script>
</body>
</html>