-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (90 loc) · 3.29 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
<!doctype html>
<html lang="en">
<!--
//
// keyer.js - a progressive web app for morse code
// Copyright (c) 2020 Roger E Critchlow Jr, Charlestown, MA, USA
// Copyright (c) 2024 Roger E Critchlow Jr, Las Cruces, NM, USA
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
//
-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="Description" content="Morse code web application.">
<base href="/">
<link
rel="stylesheet"
href="/assets/themes/light.css"
/>
<link
rel="stylesheet"
media="(prefers-color-scheme:light)"
href="/assets/themes/light.css"
/>
<link
rel="stylesheet"
media="(prefers-color-scheme:dark)"
href="/assets/themes/dark.css"
onload="document.documentElement.classList.add('sl-theme-dark');"
/>
<link rel="icon" href="/assets/favicon.ico">
<!-- See https://goo.gl/OOhYW5 -->
<link rel="manifest" href="/assets/manifest.json">
<!-- See https://goo.gl/qRE0vM -->
<meta name="theme-color" content="#1d62a7">
<!-- Add to homescreen for Chrome on Android. Fallback for manifest.json -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="Keyer">
<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Keyer">
<!-- Homescreen icons -->
<link rel="apple-touch-icon" sizes="152x152" href="/assets/img/icon-152x152.png">
<link rel="apple-touch-icon" sizes="167x167" href="/assets/img/icon-167x167.png">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/img/icon-180x180.png">
<!-- Tile icon for Windows 8 (144x144 + tile color) -->
<meta name="msapplication-TileImage" content="/assets/img/icon-144x144.png">
<meta name="msapplication-TileColor" content="#afafaf">
<meta name="msapplication-tap-highlight" content="no">
<!-- Default twitter cards -->
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@username">
<meta property="og:type" content="website">
<meta property="og:site_name" content="keyer">
<meta property="og:image" content="/assets/img/icon-144x144.png" />
<style>
html,
body {
margin: 0;
padding: 0;
width: 100%;
font-family: RobotoDraft, sans-serif;
background-color: #ededed;
}
</style>
<title>keyer.js</title>
</head>
<body>
<keyer-js></keyer-js>
<noscript>
<center>
Please enable JavaScript to view this website.
</center>
</noscript>
<script type="module" src="./out-tsc/src/keyer-js.js"></script>
</body>
</html>