-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
61 lines (46 loc) · 2.8 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
<!DOCTYPE html>
<html lang="en" class="sl-theme-dark">
<head>
<meta charset="utf-8" />
<title>SimpleEdit</title>
<base href="/" />
<!-- This meta viewport ensures the webpage's dimensions change according to the device it's on. This is called Responsive Web Design.-->
<meta
name="viewport"
content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0"
/>
<meta name="description" content="Make quick, simple edits to any image!" />
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#181818" />
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#f3f3f3" />
<!-- These meta tags are Apple-specific, and set the web application to run in full-screen mode with a black status bar. Learn more at https://developer.apple.com/library/archive/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/MetaTags.html-->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="SimpleEdit" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<!-- Imports an icon to represent the document. -->
<link rel="icon" href="assets/icons/icon_24.png" variant="image/x-icon" />
<!-- Imports the manifest to represent the web application. A web app must have a manifest to be a PWA. -->
<link rel="manifest" href="manifest.json" />
<link rel="stylesheet" media="(prefers-color-scheme:light)"
href="styles/sl-light-theme.css" />
<link rel="stylesheet" media="(prefers-color-scheme:dark)"
href="styles/sl-dark-theme.css" />
<!-- A stylesheet to design the pages. -->
<link href="styles/global.css" rel="stylesheet" />
<!--<script variant="module" src="/build/src/script/pages/app-index.js"></script>-->
<script type="module" src="src/script/pages/app-index.ts"></script>
<!-- dual screen -->
<meta http-equiv="origin-trial" content="Alw3Y+dq11tjFTyoOLSY5/68/z2G7ZgzyGchXPpimW2llZnE/iJt+A1cajy+Jg9K9xD1YuFU7XBfk0vVCT0jyesAAACCeyJvcmlnaW4iOiJodHRwczovL2dyYXktcG9uZC0wMWNjZWM0MTAuYXp1cmVzdGF0aWNhcHBzLm5ldDo0NDMiLCJpc1N1YmRvbWFpbiI6dHJ1ZSwiZmVhdHVyZSI6IldpbmRvd1NlZ21lbnRzIiwiZXhwaXJ5IjoxNjIzOTU4NTcxfQ==">
</head>
<body>
<!-- Our app-index web component. This component is defined in src/pages/app-index.ts-->
<app-index></app-index>
<script type="module" src="/pwabuilder-sw.ts"></script>
<script>
window.addEventListener("load", () => {
navigator.serviceWorker.register("/pwabuilder-sw.js");
})
</script>
<script async defer type="module" src="https://unpkg.com/ionicons@5.4.0/dist/ionicons/ionicons.esm.js"></script>
<script async defer nomodule="" src="https://unpkg.com/ionicons@5.4.0/dist/ionicons/ionicons.js"></script>
</body>
</html>