-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest.html
More file actions
47 lines (47 loc) · 1.13 KB
/
test.html
File metadata and controls
47 lines (47 loc) · 1.13 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>PenguinMod Desktop Deep Link Test</title>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
margin: 24px;
line-height: 1.5;
background: #f7f7f7;
color: #222;
}
h1 {
font-size: 20px;
margin: 0 0 12px 0;
}
p {
margin: 0 0 12px 0;
}
a {
display: inline-block;
margin: 6px 0;
padding: 10px 14px;
background: #00c3ff;
color: #fff;
text-decoration: none;
border-radius: 999px;
}
a:hover {
background: #009fd1;
}
code {
background: #eee;
padding: 2px 4px;
border-radius: 4px;
}
</style>
</head>
<body>
<h1>PenguinMod Desktop Deep Link Test</h1>
<p>Click a link below to launch the app via <code>pm://</code>.</p>
<a href="pm://localhost/index.html">Open Home</a><br />
<a href="pm://localhost/editor/index.html">Open Editor</a>
</body>
</html>