-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathoffline.html
More file actions
38 lines (32 loc) · 1.19 KB
/
offline.html
File metadata and controls
38 lines (32 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en-gb">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<title>NICE 1 Pagers – Offline</title>
<link rel="stylesheet" href="/css/all.css" type="text/css" />
</head>
<body class="home" id="top">
<header>
<h1>NICE One-Pagers</h1>
<a href="/#top"><img src="/i/home.svg" alt="Home" /></a>
</header>
<main>
<h1>It looks like you’re offline</h1>
<p class="intro">This page is not currently available offline. Please seek out an Internet connection and refresh the page.</p>
</main>
<footer>
<p>Some portions © National Institute for Health and Care Excellence. This website is not affiliated to or endorsed by NICE, and is provided in good faith at no cost to medical professionals in the UK.<br>
Designed and developed by <a href="http://clearleft.com/">Clearleft</a> pro bono.</p>
<script>
if (navigator.serviceWorker) {
navigator.serviceWorker.register('/serviceworker.js');
}
</script>
<script src="/js/global.js" async></script>
</footer>
</body>
</html>