-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (44 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Popchop</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
<link href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@600&display=swap" rel="stylesheet">
<!-- <link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon"> -->
<!-- Twitter card stuff -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:creator" content="@sbinlondon">
<meta property="twitter:img:src" content="https://raw.githubusercontent.com/sbinlondon/popchoprocks/master/pineapplepeegscardsize.jpg" />
<meta property="og:type" content="video.movie" />
<meta property="og:image" content="https://ia.media-imdb.com/images/rock.jpg" />
<meta property="og:url" content="http://popchop.rocks" />
<meta property="og:title" content="Popchop Ltd. 🍍" />
<meta property="og:description" content="Software development with a ✨ pop ✨" />
<meta property="og:image" content="https://raw.githubusercontent.com/sbinlondon/popchoprocks/master/pineapplepeegscardsize.jpg" />
<meta property="og:image:alt" content="Two guinea pigs on either side of a pineapple" />
</head>
<body>
<main>
<section class="header">
<h1>Popchop Ltd 💻</h1>
<h2>Software development with a ✨ pop ✨</h2>
</section>
</main>
<script>
// Register the service worker
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('/service-worker.js').then(function(registration) {
// Registration was successful
console.log('ServiceWorker registration successful with scope: ', registration.scope);
}).catch(function(err) {
// registration failed :(
console.log('ServiceWorker registration failed: ', err);
});
}
</script>
</body>
</html>