mirror of
https://github.com/Aviortheking/Delta-File-Manager.git
synced 2025-04-22 02:42:12 +00:00
32 lines
461 B
HTML
32 lines
461 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Hello World!</title>
|
|
<link rel="stylesheet" href="./styles.css">
|
|
</head>
|
|
|
|
<body>
|
|
<main>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>File Name</th>
|
|
<th>Modified</th>
|
|
<th>Size</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</main>
|
|
<script>
|
|
// You can also require other files to run in this process
|
|
require('./renderer.js');
|
|
// getProjects();
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|