forked from daattali/beautiful-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
178 lines (164 loc) · 6.3 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
---
layout: page
---
<center><a href="https://idleanimation.com/"><img src="/img/banner_main.png" alt="Idle Animation"></a></center>
<center><h2>AUSTRALIAN GAMERS</h2></center>
<br>
<html>
<head>
<title>Discord and Clan</title>
<style>
.my_head
{
font-family: roboto, sans-serif;
font-size: 25px;
font-weight: bold;
}
</style>
<style>
.my_body
{
font-family: roboto, sans-serif;
font-size: 20px;
font-weight: light;
}
</style>
<body><br>
<div class="my_head">Discord and Clan</div>
<div class="my_body">
You can join the Discord <a href="https://idleanimation.com/discord">here.</a><br>
Join us in the Destiny 2 clan <a href="https://idleanimation.com/destiny-clan">here.</a><br><br>
The clan is functionally no longer active while we either wait for them to fix their shit, or something better to come out. Marathon maybe? Fuck knows...<br><br>
Destiny 2 currently has <a href="https://steamdb.info/app/1085660/charts/"><strong><span id="player-count-destiny2">loading...</span></strong></a> players online.<br><br>
To put that in context...<br>
Warframe currently has <a href="https://steamdb.info/app/230410/charts/"><strong><span id="player-count-warframe">loading...</span></strong></a> players online.<br>
Call of Duty currently has <a href="https://steamdb.info/app/1938090/charts/"><strong><span id="player-count-cod">loading...</span></strong></a> players online.<br>
Apex Legends currently has <a href="https://steamdb.info/app/1172470/charts/"><strong><span id="player-count-apex">loading...</span></strong></a> players online.<br>
Baldur's Gate 3 currently has <a href="https://steamdb.info/app/1086940/charts/"><strong><span id="player-count-bg3">loading...</span></strong></a> players online.<br>
Dead by Daylight currently has <a href="https://steamdb.info/app/381210/charts/"><strong><span id="player-count-dbd">loading...</span></strong></a> players online.<br>
</div>
<script>
function fetchPlayerCounts() {
const games = [
{
name: 'Destiny 2',
appid: '1085660',
elementId: 'player-count-destiny2'
},
{
name: 'Warframe',
appid: '230410',
elementId: 'player-count-warframe'
},
{
name: 'Call of Duty: Modern Warfare II',
appid: '1938090',
elementId: 'player-count-cod'
},
{
name: 'Apex Legends',
appid: '1172470',
elementId: 'player-count-apex'
},
{
name: 'Baldur\'s Gate 3',
appid: '1086940',
elementId: 'player-count-bg3'
},
{
name: 'Dead by Daylight',
appid: '381210',
elementId: 'player-count-dbd'
}
];
function fetchGamePlayerCount(game) {
return new Promise((resolve) => {
const apiURL = `https://api.steampowered.com/ISteamUserStats/GetNumberOfCurrentPlayers/v1/?appid=${game.appid}`;
fetch('https://api.allorigins.win/get?url=' + encodeURIComponent(apiURL))
.then(response => {
if (response.ok) return response.json();
else throw new Error('Network response was not ok.');
})
.then(data => {
const parsedData = JSON.parse(data.contents);
const playerCount = parsedData.response.player_count;
const formattedCount = playerCount.toLocaleString();
document.getElementById(game.elementId).innerText = formattedCount;
resolve();
})
.catch(error => {
console.error(`Error fetching player count for ${game.name}:`, error);
document.getElementById(game.elementId).innerText = 'unavailable';
resolve();
});
});
}
async function fetchAllPlayerCounts() {
const delayBetweenRequests = 500; // in milliseconds
for (const game of games) {
await fetchGamePlayerCount(game);
await new Promise(resolve => setTimeout(resolve, delayBetweenRequests));
}
}
fetchAllPlayerCounts();
}
window.addEventListener('DOMContentLoaded', fetchPlayerCounts);
</script>
</body>
</html>
<div class="posts-list">
{% for post in paginator.posts %}
<article class="post-preview">
<a href="{{ post.url | relative_url }}">
<h2 class="post-title">{{ post.title }}</h2>
{% if post.subtitle %}
<h3 class="post-subtitle">
{{ post.subtitle }}
</h3>
{% endif %}
</a>
<div class="post-entry-container">
{% if post.image %}
<div class="post-image">
<a href="{{ post.url | relative_url }}">
<img src="{{ post.image | relative_url }}">
</a>
</div>
{% endif %}
<div class="post-entry">
{{ post.excerpt | strip_html | xml_escape | truncatewords: site.excerpt_length }}
{% assign excerpt_word_count = post.excerpt | number_of_words %}
{% if post.content != post.excerpt or excerpt_word_count > site.excerpt_length %}
<a href="{{ post.url | relative_url }}" class="post-read-more">[Read More]</a>
{% endif %}
</div>
</div>
{% if post.tags.size > 0 %}
<div class="blog-tags">
Tags:
{% if site.link-tags %}
{% for tag in post.tags %}
<a href="{{ '/tags' | relative_url }}#{{- tag -}}">{{- tag -}}</a>
{% endfor %}
{% else %}
{{ post.tags | join: ", " }}
{% endif %}
</div>
{% endif %}
</article>
{% endfor %}
</div>
{% if paginator.total_pages > 1 %}
<ul class="pager main-pager">
{% if paginator.previous_page %}
<li class="previous">
<a href="{{ paginator.previous_page_path | relative_url }}">← Newer Posts</a>
</li>
{% endif %}
{% if paginator.next_page %}
<li class="next">
<a href="{{ paginator.next_page_path | relative_url }}">Older Posts →</a>
</li>
{% endif %}
</ul>
{% endif %}