Initial commit

This commit is contained in:
2019-03-04 22:46:07 +01:00
commit 9628c2cd42
11 changed files with 1322 additions and 0 deletions

31
index.html Normal file
View File

@ -0,0 +1,31 @@
<!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>