-
Notifications
You must be signed in to change notification settings - Fork 0
/
not_found.html
66 lines (57 loc) · 2.85 KB
/
not_found.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<meta name="title" content="Tune In — RPN Radio">
<meta name="description"
content="Tune into RPN radio stations using your smartphone. Just connect to the internet and listen anytime and anywhere you like.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://tunein.rpnradio.com/">
<meta property="og:title" content="Tune In — RPN Radio">
<meta property="og:description"
content="Tune into RPN radio stations using your smartphone. Just connect to the internet and listen anytime and anywhere you like.">
<meta property="og:image" content="rpnradio-image.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://tunein.rpnradio.com/">
<meta property="twitter:title" content="Tune In — RPN Radio">
<meta property="twitter:description"
content="Tune into RPN radio stations using your smartphone. Just connect to the internet and listen anytime and anywhere you like.">
<meta property="twitter:image" content="https://tunein.rpnradio.com/rpnradio-image.png">
<link rel="stylesheet" href="css/style.css">
<script data-ad-client="ca-pub-5525109159862781" async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<link rel="mask-icon" href="safari-pinned-tab.svg" color="#5bbad5">
<meta name="apple-mobile-web-app-title" content="Tune In">
<meta name="application-name" content="Tune In">
<meta name="msapplication-TileColor" content="#ef1212">
<meta name="theme-color" content="#ffffff">
</head>
<body style="overflow: hidden;">
<div id="title-wrapper" style="cursor: pointer; top: 0" onclick="goToHome()">
<img loading="lazy" src="logo.png" id="head-logo" />
<h2>Radio</h2>
</div>
<div class="message" style="position: relative; text-align: center; top: 30vh">
<h2>Oops. We could not find that page.</h2>
</div>
<div id="footer" w3-include-html="footer.html"
style="position: absolute; bottom: 0; right: 0; left: 0; margin-bottom: 20px;">
</div>
<script src="script.js"></script>
<script>
function goToHome() {
window.location.href = "https://tunein.rpnradio.com"
}
includeHTML();
</script>
</body>
</html>