-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathwatch.html
More file actions
67 lines (66 loc) · 3.49 KB
/
watch.html
File metadata and controls
67 lines (66 loc) · 3.49 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
<!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>Watch Channel - Weather Ranch Streaming</title>
<meta property="og:url" content="https://streaming.weatherranch.com" />
<meta property="og:type" content="video.other" />
<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/player.css">
<script src="/js/player.js"></script>
<script src="/js/video.min.js"></script>
<link href="/js/video-js.css" rel="stylesheet">
<script src="https://kit.fontawesome.com/913ab3dc19.js" crossorigin="anonymous"></script>
<script src="https://imasdk.googleapis.com/js/sdkloader/ima3.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/videojs-ima/2.2.0/videojs.ima.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/videojs-ima/2.2.0/videojs.ima.min.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/videojs-contrib-ads/6.6.5/videojs.ads.min.js"></script>
</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"><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="video-wrapper vjs-frame" id="video-wrapper">
</div>
<aside id="stream-details">
<div class="itm details-head">
<img src="about:blank">
<div class="details-label">
<h1>Loading</h1>
<h3>Loading</h3>
</div>
</div>
<div class="itm details-content">
<p><i class="nodesc">Loading</i></p>
</div>
<div class="itm details-buttons">
<a href="/guide" class="">
<button class="right-btn">Back to Guide</button>
</a>
</div>
</aside>
</div>
</div>
<footer class="footer">
<div class="footer-content">
<p>© <span id="currentYear"></span> Weather Ranch. All rights reserved.</p>
</div>
</footer>
<script>
document.getElementById("currentYear").innerText = new Date().getFullYear();
</script>
</body>