-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
178 lines (155 loc) · 5.39 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html>
<head>
<!-- Must -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no"
/>
<title>NoteBook</title>
<meta
name="description"
content="Awesome application that will help you take notes."
/>
<meta name="keywords" content="note, books, education, notebook" />
<!-- Android -->
<meta name="theme-color" content="#161b22" />
<meta name="mobile-web-app-capable" content="yes" />
<!-- iOS -->
<meta name="apple-mobile-web-app-title" content="NoteBook" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-status-bar" content="#161b22" />
<link rel="author" href="https://github.com/noelpaul" />
<link rel="canonical" href="https://noelpaul.github.io/notebook/" />
<link rel="apple-touch-icon" href="icons/icon-96x96.png" />
<link rel="apple-touch-icon" href="icons/icon-72x72.png" sizes="72x72" />
<link
rel="apple-touch-icon"
href="icons/icon-144x144.png"
sizes="144x144"
/>
<link
href="icons/icon-192x192.png"
rel="apple-touch-icon"
sizes="192x192"
/>
<!-- Windows -->
<meta name="msapplication-navbutton-color" content="#161b22" />
<meta name="msapplication-TileColor" content="#161b22" />
<meta name="msapplication-TileImage" content="icons/icon-144x144.png" />
<meta name="msapplication-config" content="none" />
<meta name="msapplication-starturl" content="/notebook/" />
<!-- Pinned Sites -->
<meta name="application-name" content="NoteBook" />
<meta name="msapplication-tooltip" content="NoteBook" />
<meta name="msapplication-starturl" content="/notebook/" />
<!-- Tap highlighting -->
<meta name="msapplication-tap-highlight" content="no" />
<!-- UC Mobile Browser -->
<meta name="full-screen" content="yes" />
<meta name="browsermode" content="application" />
<!-- Disable night mode for this page -->
<meta name="nightmode" content="enable/disable" />
<!-- Layout mode -->
<meta name="layoutmode" content="fitscreen/standard" />
<!-- imagemode - show image even in text only mode -->
<meta name="imagemode" content="force" />
<!-- Orientation -->
<meta name="screen-orientation" content="portrait" />
<!-- Twitter -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:url" content="https://noelpaul.github.io/notebook/" />
<meta name="twitter:title" content="NoteBook" />
<meta
name="twitter:description"
content="Awesome application that will help you take notes."
/>
<meta
name="twitter:image"
content="https://noelpaul.github.io/notebook/icons/icon-192x192.png"
/>
<!-- Google -->
<meta itemprop="name" content="NoteBook" />
<meta
itemprop="description"
content="Awesome application that will help you take notes."
/>
<meta
itemprop="image"
content="https://noelpaul.github.io/notebook/icons/icon-192x192.png"
/>
<!-- FaceBook -->
<meta property="og:url" content="https://noelpaul.github.io/notebook/" />
<meta
property="og:image"
content="https://noelpaul.github.io/notebook/icons/icon-192x192.png"
/>
<meta
property="og:description"
content="Awesome application that will help you take notes."
/>
<meta property="og:title" content="NoteBook" />
<meta property="og:site_name" content="NoteBook App" />
<meta
property="og:see_also"
content="https://noelpaul.github.io/notebook/"
/>
<!-- Main Link Tags -->
<link
href="icons/icon-72x72.png"
rel="icon"
type="image/png"
sizes="72x72"
/>
<!-- Startup Image -->
<link href="icons/icon-512x512.png" rel="apple-touch-startup-image" />
<!-- Pinned Tab -->
<link
href="icons/icon-72x72.png"
name="mask-icon"
rel="mask-icon"
size="any"
color="#161b22"
/>
<!-- Android -->
<link href="icons/icon-192x192.png" rel="icon" sizes="192x192" />
<link href="icons/icon-144x144.png" rel="icon" sizes="144x144" />
<!-- Others -->
<link href="icons/icon-72x72.png" rel="shortcut icon" type="image/png" />
<!-- UC Browser -->
<link
href="icons/icon-72x72.png"
rel="apple-touch-icon-precomposed"
sizes="72x72"
/>
<!-- Manifest.json -->
<link rel="manifest" href="manifest.json" />
<!-- Styles -->
<link rel="stylesheet" href="index.css" />
</head>
<body>
<div id="root" class="root">
<span class="preloader">Loading</span>
</div>
<script>
const theme = JSON.parse(localStorage.getItem("Theme-React"));
if (!theme) {
document.getElementById("root").classList.add("dark");
}
</script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<script
crossorigin
src="https://unpkg.com/react@17/umd/react.production.min.js"
></script>
<script
crossorigin
src="https://unpkg.com/react-dom@17/umd/react-dom.production.min.js"
></script>
<script src="app.js"></script>
<script defer type="text/babel" src="react-ui.js"></script>
</body>
</html>