-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
81 lines (63 loc) · 2.68 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>Sky Screenshot Stats</title>
<meta name="description" content="Gain an insight in your Sky playtime & other stats by analyzing the screenshots you took over your journey through the world of Sky: Children Of The Light ">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="Sky Screenshot Stats">
<meta property="og:type" content="website">
<meta property="og:url" content="https://skystats.jam54.com">
<meta property="og:image" content="/icon.png">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/landingpage.css">
<meta name="theme-color" content="#fafafa">
</head>
<body>
<div class="topnav">
<a href="/">Sky Screenshot Stats</a>
</div>
<div id="root" class="landingpage">
<p style="text-align: center">
<em>Sky Screenshot Stats</em>
is a website that gives you an insight in your Sky playtime & some other statistics.
This is achieved by analyzing the date at which your screenshots were taken.
It is your device that processes the data, nothing is sent to any server!
</p>
<br>
<a href="/howitworks">
<button class="button button1">
How it works
</button>
</a>
<br><br><br>
<folder-picker id="folder"></folder-picker>
<div id="loadingIcon" class="hidden">
<img src="img/Double_Ring-1s-200px.svg" alt="Loading Icon">
<p id="loadingText">
Processing screenshots
</p>
</div>
<br><br><br>
<button class="button button1" onclick="window.open('https://discord.gg/z6wEvv7')">Need help? Chat with us on Discord!</button>
<br><br>
<p>
No screenshots yet? <em id="openStats" class="clickableText">demo</em>
</p>
<br>
</div>
<div class="bottomnav">
<p>
Made by <a href="https://jam54.com/about" target="_blank">jam54</a>.
Sky Screenshot Stats is <a href="https://github.com/jam53/sky-screenshot-stats" target="_blank">open source</a> software.
<a href="/about">About</a>.
</p>
</div>
<script type="module" src="js/landingpage.js"></script>
<script type="module" src="js/CustomElements/folder-picker.js"></script>
</body>
</html>