-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.08 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>KeepLister — Files & Directories</title>
<meta name="description"
content="It lists the files, that you keep on your storage drives, as a common file browser.
It's aimed to help digital hoarders finding their files. In other words: it's a file manager snapshot explorer, or a file explorer for JSON snapshots with meta information of local files.
The scanner for creating the snapshots is included.
See more info here: https://github.com/AlttiRi/keep-lister#readme">
<style>
html, body {
min-height: 100vh;
margin: 0;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#app {
display: contents;
/*width: 1280px;*/
}
</style>
</head>
<body>
<div id="app"></div>
<script src="/src/main.js" type="module"></script>
</body>
</html>