forked from jcv8000/Codex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
55 lines (45 loc) · 1.56 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
52
53
54
55
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<script>
const {shell} = require('electron');
</script>
<style>
body {
background-color: #F8F9FA;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
padding: 30px;
}
</style>
<body>
<center>
<img src="img/logo.png" style="width: 100%">
<p><code><b>Version 1.4.2</b></code><br>Made by Josh Vickery</p>
<br>
<span style="font-size: 12px">This work is licensed under a <a rel="license" href="#" onclick="shell.openExternal('https://creativecommons.org/licenses/by-nc/4.0/')">CC BY-NC 4.0 License</a>.</span>
<br><br><br>
<h3>Acknowledgements</h3>
<br>
</center>
<p>Codex would not be possible without these amazing open-source projects:</p>
<ul>
<li>Electron</li>
<li>ProseMirror</li>
<li>Bootstrap</li>
<li>Highlightjs</li>
<li>prosemirror-highlightjs</li>
</ul>
<center>
<p>A huge thank you to everyone apart of those<br> projects who made Codex possible.</p>
</center>
<br><br>
<center>
<h3>Privacy</h3>
<br>
<p>Codex does not collect any of your information or data, or transmit any of your information or data over the internet.</p>
</center>
</body>
</html>