-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
51 lines (44 loc) · 1.58 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Viewer</title>
<link rel="stylesheet" href="https://linfindel.github.io/nadircss/nadir.css">
</head>
<body style="background-size: cover; background-repeat: no-repeat;">
<div class="navbar-column">
<nav id="navbar">
<h1 id="navbar-text">Image Viewer</h1>
</nav>
<button onclick="location.href = '.'">
<span translate="no" class="material-symbols-rounded">arrow_back</span>
Back
</button>
</div>
<div class="card column">
<div class="text-center">
<h1 translate="no" style="font-size: 5rem;" class="material-symbols-rounded">license</h1>
<h1>GPL 3.0</h1>
<p>This is free and open-source software. You can contribute to the source code below.</p>
</div>
</div>
<div id="about-card" class="card column" style="opacity: 0; pointer-events: none;">
<div class="text-center">
<h1 id="version">Loading...</h1>
<p id="whats-new"></p>
</div>
<div class="row">
<button id="about1" onclick="window.open('https://linfindel.github.io', '_blank')" class="about">
<span translate="no" class="material-symbols-rounded">home</span>
More projects
</button>
<button id="about2" onclick="window.open('https://www.github.com/linfindel/images', '_blank')" class="about">
<span translate="no" class="material-symbols-rounded">code</span>
Source code
</button>
</div>
</div>
<script src="about.js"></script>
</body>
</html>