-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathindex.php
More file actions
25 lines (22 loc) · 624 Bytes
/
index.php
File metadata and controls
25 lines (22 loc) · 624 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Service Worker Example</title>
<link rel="manifest" href="/manifest.json" />
<link href="/style.css" rel="stylesheet" />
</head>
<body>
<h1>Service Worker Example</h1>
<a href="page1.php">Page 1</a>
<br/><br/>
<a href="page2.php">Page 2</a>
<br/><br/>
<div>
<p>Before you enable the PWA, check out how slow this website is.</p>
<button id="enable">Enable the PWA</button>
</div>
<button id="install">Install this app</button>
<script src="/script.js"></script>
</body>