-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathallchannels.html
More file actions
65 lines (65 loc) · 3.58 KB
/
allchannels.html
File metadata and controls
65 lines (65 loc) · 3.58 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
<!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</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/homepageall.css">
<style>
.main {
text-align: center;
}
</style>
</head>
<body>
<h1 class="hidden">Weather Ranch Streaming - All Channels</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="/" 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"><img class="nav-icon" alt="Guide Button" src="/assets/icons/guide.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 class="info-flex">
<div class="landing-item partners">
<div class="partners-details">
<a href="/guide" class="btn-fullwidth">
<div class="fullwidth-effect"></div>
<div class="fullwidth-btn">Return to Regular View →</div>
</a>
<div class="partners-links" id="featured">
<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>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="footer-content">
<p>© <span id="currentYear"></span> Weather Ranch. All rights reserved.</p>
<p><a href="https://weatherranch.com">weatherranch.com</a> - <a href="https://weatherscan.me">weatherscan.me</a></p>
</div>
</footer>
<script>
document.getElementById("currentYear").innerText = new Date().getFullYear();
</script>
</body>
<script src="/js/featuredall.js"></script>
</html>