-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoffline.html
More file actions
54 lines (46 loc) · 1.13 KB
/
offline.html
File metadata and controls
54 lines (46 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
48
49
50
51
52
53
54
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>UiASub | Offline</title>
<link rel="icon" href="/images/uiasub/Icon1.png">
<!-- Umami Analytics -->
<script defer src="https://cloud.umami.is/script.js" data-website-id="410f43d3-648d-4b39-9a2a-d259c6cbab6e"></script>
<link rel="stylesheet" href="/css/custom.css">
<style>
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background: #002b4f;
color: #fff;
font-family: sans-serif;
margin: 0;
}
.card {
max-width: 720px;
text-align: center;
padding: 24px;
}
a.button {
display: inline-block;
margin-top: 16px;
padding: 10px 16px;
background: #00101a;
color: #fff;
border-radius: 6px;
text-decoration: none
}
</style>
</head>
<body>
<div class="card">
<h1>UiASub</h1>
<p>You are offline.</p>
<a class="button" href="/">Return home</a>
</div>
<script src="/js/service-worker-register.js"></script>
</body>
</html>