-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (75 loc) · 3.14 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
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="UTF-8" />
<title>TNS Links</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="font-awesome.css" />
<link rel="stylesheet" href="assets/css/font-awesome.min.css" />
<link rel="icon" href="" type="image/x-icon" />
</head>
<body>
<img id="userPhoto" src="https://samgreenwoodtech.files.wordpress.com/2020/11/cropped-tns-round_3.png?w=200" alt="User Photo"/>
<h1>The Tech News Source</h1>
<div id="description">
The Tech News Source is your source for the latest tech news.
</div>
<div id="links">
<a class="link" href="https://thetechnewssource.com/" target="_blank">Homepage</a>
<a class="link" href="https://thetechnewssource.com/2021/10/20/october-2021-apple-event/" target="_blank">Most Recent Post</a>
<details>
<summary>Support TNS</summary>
<a class="link" href="https://http://patreon.com/thetechnewssource" target="_blank">Support Nonthlr (or Annually) On Patreon</a>
<a class="link" href="https://http://PayPal.me/thetechnewssource" target="_blank">Make A One Time Donation via PayPal</a>
</details>
<details>
<summary> Watch live on YouTube </summary>
<iframe width="560" height="315" src="https://www.youtube.com/embed/live_stream?channel=UCiEOfLx-cmNBW4Ov-Jn_ngw" frameborder="0" allowfullscreen></iframe>
<script src="https://apis.google.com/js/platform.js"></script>
<div class="g-ytsubscribe" data-channelid="UCiEOfLx-cmNBW4Ov-Jn_ngw" data-layout="default" data-count="default"></div>
</details>
<script type="application/python" src="yt.py"></script>
</div>
<!-- Javascript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</body>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4XEBD9X5DK"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-4XEBD9X5DK');
</script>
<html>
<style>
details > summary {
display: block;
background-color: var(--accentColor);
color: var(--bgColor);
font-family: var(--font);
text-align: center;
margin-bottom: 20px;
padding: 17px;
text-decoration: none;
font-size: 1rem;
transition: all .25s cubic-bezier(.08,.59,.29,.99);
border-radius: 25px;
}
details > summary:hover {
background-color: var(--hoverColor);
color: #ffffff;
}
details > p {
background-color: #eeeeee;
padding: 4px;
margin: 0;
box-shadow: 1px 1px 2px #bbbbbb;
}
</style>
</html>