mirror of
https://github.com/boku7/Loki
synced 2026-06-06 15:24:27 +00:00
32 lines
942 B
HTML
32 lines
942 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>File Explorer</title>
|
|
<link rel="stylesheet" href="explorer.css">
|
|
</head>
|
|
<body>
|
|
<!-- <h2>Loki Green File Explorer</h2> -->
|
|
<div class="nav-container">
|
|
<button class="back-button" onclick="goBack()">⬅ Parent Dir</button>
|
|
<input type="text" id="dirPath" />
|
|
<button onclick="listFiles()">Browse</button>
|
|
</div>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th onclick="sortTable(0)">Name 🔽</th>
|
|
<th onclick="sortTable(1)">Size (bytes) 🔽</th>
|
|
<th onclick="sortTable(2)">Type 🔽</th>
|
|
<th onclick="sortTable(3)">Last Modified 🔽</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="fileList"></tbody>
|
|
</table>
|
|
|
|
<script src="explorer.js"></script>
|
|
</body>
|
|
</html>
|