Delta-File-Manager/index.html
2019-03-04 22:46:07 +01:00

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>