-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathguide.html
More file actions
73 lines (70 loc) · 3.44 KB
/
guide.html
File metadata and controls
73 lines (70 loc) · 3.44 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<meta http-equiv='content-language' content="en">
<meta name="description" content="Explore live streams from Weather Ranch and our partners, including weather updates, music, and entertainment. Watch now!">
<title>Weather Ranch Streaming - Guide</title>
<meta property="og:title" content="Weather Ranch Streaming" />
<meta property="og:description" content="Explore live streams from Weather Ranch and our partners, including weather updates, music, and entertainment. Watch now!" />
<meta property="og:image" content="https://streaming.weatherranch.com/logo.png" />
<meta property="og:url" content="https://streaming.weatherranch.com" />
<meta property="og:type" content="website" />
<link rel="favicon" href="/favicon.ico">
<link rel="manifest" href="/manifest/root.json"/>
<head>
<link rel="stylesheet" href="/css/root.css">
<link rel="stylesheet" href="/css/buttons.css">
<link rel="stylesheet" href="/css/guide.css">
<style>
.main {
text-align: center;
}
.spinner {
width: 100px;
height: 100px;
animation: spin 2s linear infinite, progres 4s linear infinite;
}
@keyframes progres {
from {
stroke-dashoffset: 1200;
}
to {
stroke-dashoffset: -1200;
}
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<h1 class="hidden">Weather Ranch Streaming Site</h1>
<header>
<nav class="nav-links">
<a href="/" class="nav-logo"><img class="headerlogo" alt="Weather Ranch Logo" src="/img/logo.svg"></a>
<a href="/home" class="header-link"><img class="nav-icon" alt="Home button" src="/assets/icons/home.svg"><button class="header-btn">Home</button></a>
<a href="/guide" class="header-link header-active"><img class="nav-icon" alt="Guide Button" src="/assets/icons/guide_active.svg"><button class="header-btn">Guide</button></a>
<a href="/radio" class="header-link roaid"><img class="nav-icon" src="/assets/icons/radio.svg"><button class="header-btn">Radio</button></a>
<a href="/about" class="header-link"><img class="nav-icon" alt="About page" src="/assets/icons/info.svg"><button class="header-btn">About</button></a>
</nav>
</header>
<div class="main">
<div id="spinner">
<svg viewBox="0 0 800 800" xmlns="http://www.w3.org/2000/svg" class="spinner">
<circle class="spin" cx="400" cy="400" fill="none" r="192" stroke-width="32" stroke="#ffffff" stroke-dasharray="1207 1400" stroke-linecap="butt"></circle>
</svg>
</div>
<div id="guide" class="guide">
</div>
</div>
<footer class="footer">
<div class="footer-content">
<p>© <span id="currentYear"></span> Weather Ranch. All rights reserved.</p>
</div>
</footer>
<script src="/js/guide_controller_old.js"></script>
</body>
</html>