-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (63 loc) · 2.95 KB
/
index.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
67
68
69
70
71
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A layout example that shows off a responsive product landing page.">
<title>{{ .PageTitle }}</title>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/build/pure-min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/build/grids-responsive-min.css">
<link rel="stylesheet" href="/assets/style.css">
</head>
<body>
<div class="header">
<div class="home-menu pure-menu pure-menu-horizontal pure-menu-fixed">
<a class="pure-menu-heading" href="">{{ .PageTitle }}</a>
<ul class="pure-menu-list">
<li class="pure-menu-item pure-menu-selected"><a href="#" class="pure-menu-link">Home</a></li>
<li class="pure-menu-item"><a href="#" class="pure-menu-link">Explore</a></li>
<li class="pure-menu-item"><a href="#" class="pure-menu-link">TV Shows</a></li>
<li class="pure-menu-item"><a href="#" class="pure-menu-link">Movies</a></li>
<li class="pure-menu-item"><a href="#" class="pure-menu-link">News and Popular</a></li>
<li class="pure-menu-item"><a href="#" class="pure-menu-link">Your Account</a></li>
</ul>
</div>
</div>
<div class="splash-container">
<div class="splash">
<h1 class="splash-head">
YOUR IP: <span id="ipAddr">{{ .CurrentIp }}</span>
</h1>
<p class="splash-subhead">
This is your current visible IP address.
</p>
<p>
<a class="pure-button pure-button-primary" style="color: #fff" href="#movie">
<i class="fa fa-play fa-lg"></i> PLAY
</a>
</p>
</div>
</div>
<div class="content-wrapper">
<div class="content">
<h2 id="movie" class="content-head is-center">Some Cool Movie</h2>
<div class="pure-g">
{{ if or (eq .CurrentIp "127.0.0.1") (eq .CurrentIp "::1") }}
<div class="l-box-lrg is-center pure-u-1">
<div class="alert-box">
Oh no! This title currently isn't available to watch in your country.
</div>
</div>
{{ else }}
<div class="l-box-lrg is-center pure-u-1">
<iframe width="1280" height="720" src="https://www.youtube.com/embed/WhWc3b3KhnY?si=UyzOraZJvVFlucqd" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
{{ end }}
</div>
<div class="footer l-box is-center">
Be sure to not use any VPN or anti GeoIP blocking services
</div>
</div>
</body>
</html>