forked from LuHuangMSFT/pwa
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
68 lines (61 loc) · 2.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hello!</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="origin-trial" content="Ahhf9fU+YihqT4hwXW74qewsmM8D8N1xyZ0PgmMogR3dc9Br42K/SQ5/pDCcYA43ux8Wvvem3Hh6ci8rFMCBWyMAAAByeyJvcmlnaW4iOiJodHRwczovL21hbmR5bXNmdC5naXRodWIuaW86NDQzIiwiaXNTdWJkb21haW4iOmZhbHNlLCJmZWF0dXJlIjoiV2ViQXBwVXJsSGFuZGxpbmciLCJleHBpcnkiOjE2NDUyMjM2OTV9">
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="./style.css" />
<link rel="manifest" href="./manifest.json" />
<!-- import the webpage's javascript file -->
<script src="./script.js" defer></script>
<script type="module">
import "https://cdn.jsdelivr.net/npm/@pwabuilder/pwaupdate";
const el = document.createElement("pwa-update");
document.body.appendChild(el);
</script>
</head>
<body>
<h1>
Test App For
</h1>
<h2>
<a href="https://github.com/WICG/pwa-url-handler/blob/master/explainer.md"
>Testing Web App URL Handlers</a
>.
</h2>
<img
src="https://cdn.glitch.com/47e82a3e-e99d-4a0a-86f9-4f8bea8ede1e%2Fastronaut-icon.png?v=1587002651149"
alt="Astronaut."
height="200"
width="200"
/>
<div>
Test URLs, these are in scope.
<ul>
<li><a href="https://mandymsft.github.io/pwa/">https://mandymsft.github.io/pwa/</a></li>
<li><a href="https://mandymsft.github.io/pwa/target.html">https://mandymsft.github.io/pwa/target.html</a></li>
</ul>
These are out of scope, but handled by the app.
<ul>
<li><a href="https://mandymsft.github.io">https://mandymsft.github.io</a></li>
<li><a href="https://mandymsft.github.io/404">https://mandymsft.github.io/404</a></li>
<li><a href="https://luhuangmsft.github.io">https://luhuangmsft.github.io</a></li>
<li><a href="https://luhuangmsft.github.io/pwa">https://luhuangmsft.github.io/pwa</a></li>
<li><a href="https://luhuangmsft.github.io/pwa/target.html">https://luhuangmsft.github.io/pwa/target.html</a></li>
<li><a href="https://tinyurl.com/2xucxc35">https://tinyurl.com/2xucxc35</a></li>
</ul>
These are out of scope, and not handled by the app.
<ul>
<li><a href="https://bing.com/">https://bing.com/</a></li>
<li><a href="https://www.pinterest.com/">https://www.pinterest.com/</a></li>
</ul>
</div>
<!-- include the Glitch button to show what the webpage is about and
to make it easier for folks to view source and remix -->
<div class="glitchButton" style="position:fixed;top:20px;right:20px;"></div>
<script src="https://button.glitch.me/button.js"></script>
</body>
</html>