diehardtwb commited on
Commit
4e9047f
·
verified ·
1 Parent(s): 80fc08a

- Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +370 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Twbhq
3
- emoji: 💻
4
  colorFrom: green
5
- colorTo: yellow
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: twbhq
3
+ emoji: 🐳
4
  colorFrom: green
5
+ colorTo: pink
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,370 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>The Wild Bunch Podcast</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <script>
10
+ tailwind.config = {
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ 'twb-primary': '#ff6b35',
15
+ 'twb-secondary': '#1a1a2e',
16
+ 'twb-accent': '#4cc9f0',
17
+ 'twb-dark': '#0d0d1a',
18
+ }
19
+ }
20
+ }
21
+ }
22
+ </script>
23
+ <style>
24
+ @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');
25
+
26
+ body {
27
+ font-family: 'Roboto', sans-serif;
28
+ background-color: #0d0d1a;
29
+ color: #e6e6e6;
30
+ overflow-x: hidden;
31
+ }
32
+
33
+ .orbitron {
34
+ font-family: 'Orbitron', sans-serif;
35
+ }
36
+
37
+ .glow-text {
38
+ text-shadow: 0 0 10px rgba(255, 107, 53, 0.7);
39
+ }
40
+
41
+ .pixel-border {
42
+ border: 2px solid #ff6b35;
43
+ position: relative;
44
+ }
45
+
46
+ .pixel-border::before {
47
+ content: "";
48
+ position: absolute;
49
+ top: -5px;
50
+ left: -5px;
51
+ right: -5px;
52
+ bottom: -5px;
53
+ border: 2px solid #4cc9f0;
54
+ z-index: -1;
55
+ }
56
+
57
+ .post-card {
58
+ transition: transform 0.3s ease, box-shadow 0.3s ease;
59
+ }
60
+
61
+ .post-card:hover {
62
+ transform: translateY(-5px);
63
+ box-shadow: 0 10px 25px rgba(76, 201, 240, 0.2);
64
+ }
65
+
66
+ .progress-bar {
67
+ height: 8px;
68
+ background-color: #1a1a2e;
69
+ border-radius: 4px;
70
+ overflow: hidden;
71
+ }
72
+
73
+ .progress-fill {
74
+ height: 100%;
75
+ background-color: #ff6b35;
76
+ width: 50%;
77
+ border-radius: 4px;
78
+ }
79
+
80
+ .nav-link::after {
81
+ content: '';
82
+ display: block;
83
+ width: 0;
84
+ height: 2px;
85
+ background: #ff6b35;
86
+ transition: width 0.3s;
87
+ }
88
+
89
+ .nav-link:hover::after {
90
+ width: 100%;
91
+ }
92
+
93
+ .mobile-menu {
94
+ transform: translateX(100%);
95
+ transition: transform 0.3s ease-in-out;
96
+ }
97
+
98
+ .mobile-menu.open {
99
+ transform: translateX(0);
100
+ }
101
+
102
+ .episode-card {
103
+ background: linear-gradient(145deg, #1a1a2e, #0d0d1a);
104
+ border: 1px solid #2a2a40;
105
+ }
106
+
107
+ .sheep-logo {
108
+ position: relative;
109
+ }
110
+
111
+ .sheep-logo::before {
112
+ content: "DH";
113
+ position: absolute;
114
+ top: 50%;
115
+ left: 50%;
116
+ transform: translate(-50%, -50%);
117
+ font-family: 'Orbitron', sans-serif;
118
+ font-weight: 700;
119
+ color: #ff6b35;
120
+ font-size: 1.2rem;
121
+ z-index: 2;
122
+ }
123
+
124
+ .sheep-logo::after {
125
+ content: "MZ";
126
+ position: absolute;
127
+ top: 50%;
128
+ left: 50%;
129
+ transform: translate(calc(-50% + 15px), calc(-50% + 15px));
130
+ font-family: 'Orbitron', sans-serif;
131
+ font-weight: 700;
132
+ color: #4cc9f0;
133
+ font-size: 1.2rem;
134
+ z-index: 2;
135
+ }
136
+ </style>
137
+ </head>
138
+ <body class="bg-twb-dark">
139
+ <!-- Top Bar -->
140
+ <div class="bg-twb-secondary py-2 px-4">
141
+ <div class="container mx-auto flex flex-col md:flex-row justify-between items-center">
142
+ <div class="flex space-x-4 mb-2 md:mb-0">
143
+ <a href="mailto:office@example.org" class="text-twb-accent hover:text-white transition">
144
+ <i class="fas fa-envelope mr-1"></i> office@example.org
145
+ </a>
146
+ <a href="tel:111222333" class="text-twb-accent hover:text-white transition">
147
+ <i class="fas fa-phone mr-1"></i> 111-222-333
148
+ </a>
149
+ </div>
150
+ <a href="mailto:diehard@twbguild.com?subject=Sponsor%20Outreach" class="bg-twb-primary hover:bg-orange-600 text-white px-3 py-1 rounded transition font-bold orbitron">
151
+ <i class="fas fa-microphone-alt mr-1"></i> Guest Host Inquiries
152
+ </a>
153
+ </div>
154
+ </div>
155
+
156
+ <!-- Main Header -->
157
+ <header class="py-6 px-4">
158
+ <div class="container mx-auto flex flex-col md:flex-row items-center justify-between">
159
+ <!-- Logo and Title -->
160
+ <div class="flex items-center mb-4 md:mb-0">
161
+ <div class="sheep-logo w-16 h-16 bg-white rounded-full overflow-hidden mr-4">
162
+ <img src="https://twbhq.com/wp-content/uploads/2025/03/DALL%C2%B7E-2025-03-27-01.47.41-A-bold-and-dynamic-podcast-logo-for-The-Wild-Bunch-Podcast-featuring-the-initials-DH-and-MZ-shaped-into-the-silhouette-of-a-sheeps-head.-The-de.webp"
163
+ alt="The Wild Bunch Podcast Logo" class="w-full h-full object-cover">
164
+ </div>
165
+ <div>
166
+ <h1 class="orbitron text-2xl md:text-3xl font-bold text-white">
167
+ <a href="http://twbhq.com/" class="hover:text-twb-primary transition">The Wild Bunch Podcast</a>
168
+ </h1>
169
+ <p class="text-twb-accent orbitron">Where Old-School Guild Loyalty Meets New-Gen Chaos.</p>
170
+ </div>
171
+ </div>
172
+
173
+ <!-- Desktop Navigation -->
174
+ <nav class="hidden md:flex space-x-8 items-center">
175
+ <a href="http://twbhq.com/2025/03/17/podheads/" class="nav-link text-white hover:text-twb-primary orbitron">HEY! Listen.</a>
176
+ <a href="http://twbhq.com/category/podcast-news/" class="nav-link text-white hover:text-twb-primary orbitron">Podcast News</a>
177
+ <a href="http://twbhq.com/category/episodes/" class="nav-link text-white hover:text-twb-primary orbitron">Episodes</a>
178
+ <a href="http://twbhq.com/about-twbs-podcast/" class="nav-link text-white hover:text-twb-primary orbitron">About TWB's Podcast</a>
179
+ <a href="http://twbhq.com/guest-host-signup/" class="nav-link text-white hover:text-twb-primary orbitron">Guest Host Signup</a>
180
+ <button class="text-twb-accent hover:text-white">
181
+ <i class="fas fa-search text-xl"></i>
182
+ </button>
183
+ </nav>
184
+
185
+ <!-- Mobile Menu Button -->
186
+ <button id="mobileMenuButton" class="md:hidden text-twb-accent text-2xl">
187
+ <i class="fas fa-bars"></i>
188
+ </button>
189
+ </div>
190
+ </header>
191
+
192
+ <!-- Mobile Menu -->
193
+ <div id="mobileMenu" class="mobile-menu fixed top-0 right-0 h-full w-64 bg-twb-secondary z-50 p-6">
194
+ <button id="closeMobileMenu" class="absolute top-4 right-4 text-twb-accent text-2xl">
195
+ <i class="fas fa-times"></i>
196
+ </button>
197
+ <div class="mt-12">
198
+ <a href="http://twbhq.com/2025/03/17/podheads/" class="block py-3 text-white hover:text-twb-primary orbitron">HEY! Listen.</a>
199
+ <a href="http://twbhq.com/category/podcast-news/" class="block py-3 text-white hover:text-twb-primary orbitron">Podcast News</a>
200
+ <a href="http://twbhq.com/category/episodes/" class="block py-3 text-white hover:text-twb-primary orbitron">Episodes</a>
201
+ <a href="http://twbhq.com/about-twbs-podcast/" class="block py-3 text-white hover:text-twb-primary orbitron">About TWB's Podcast</a>
202
+ <a href="http://twbhq.com/guest-host-signup/" class="block py-3 text-white hover:text-twb-primary orbitron">Guest Host Signup</a>
203
+ <div class="mt-8">
204
+ <div class="relative">
205
+ <input type="text" placeholder="Search..." class="w-full bg-twb-dark text-white px-4 py-2 rounded">
206
+ <button class="absolute right-3 top-2 text-twb-accent">
207
+ <i class="fas fa-search"></i>
208
+ </button>
209
+ </div>
210
+ </div>
211
+ </div>
212
+ </div>
213
+
214
+ <!-- Hero Section -->
215
+ <section class="py-16 px-4 bg-gradient-to-r from-twb-secondary to-twb-dark">
216
+ <div class="container mx-auto text-center">
217
+ <h2 class="orbitron text-4xl md:text-6xl font-bold text-white mb-6 glow-text">
218
+ LEGACY, LOYALTY, AND LOUD OPINIONS
219
+ </h2>
220
+ <p class="text-xl text-twb-accent max-w-3xl mx-auto mb-10">
221
+ Straight from the Front Lines of Gaming Culture
222
+ </p>
223
+ <div class="flex flex-wrap justify-center gap-4">
224
+ <a href="http://twbhq.com/category/episodes/" class="bg-twb-primary hover:bg-orange-600 text-white px-8 py-3 rounded-full font-bold orbitron text-lg transition">
225
+ LISTEN NOW
226
+ </a>
227
+ <a href="http://twbhq.com/guest-host-signup/" class="bg-transparent border-2 border-twb-accent hover:bg-twb-accent text-white px-8 py-3 rounded-full font-bold orbitron text-lg transition">
228
+ BECOME A GUEST HOST
229
+ </a>
230
+ </div>
231
+ </div>
232
+ </section>
233
+
234
+ <!-- Latest Episodes -->
235
+ <section class="py-16 px-4">
236
+ <div class="container mx-auto">
237
+ <h2 class="orbitron text-3xl md:text-4xl font-bold text-white mb-2 text-center">LATEST EPISODES</h2>
238
+ <div class="w-20 h-1 bg-twb-primary mx-auto mb-12"></div>
239
+
240
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
241
+ <!-- Episode 1 -->
242
+ <div class="episode-card post-card rounded-lg overflow-hidden shadow-xl">
243
+ <a href="http://twbhq.com/2025/05/07/elementor-150/">
244
+ <div class="relative">
245
+ <div class="bg-gray-800 h-48 w-full"></div>
246
+ <div class="absolute bottom-4 left-4 bg-twb-primary text-white px-3 py-1 rounded orbitron">
247
+ NEW EPISODE
248
+ </div>
249
+ </div>
250
+ <div class="p-6">
251
+ <h3 class="orbitron text-xl font-bold text-white mb-3">Elementor #150</h3>
252
+ <div class="mb-4">
253
+ <p class="text-twb-accent orbitron mb-1">My Skill Web Designer</p>
254
+ <div class="progress-bar">
255
+ <div class="progress-fill"></div>
256
+ </div>
257
+ <p class="text-right text-sm text-gray-400 mt-1">50% Complete</p>
258
+ </div>
259
+ <p class="text-gray-300 mb-4">Dive into the world of web design with our special guest...</p>
260
+ <div class="flex justify-between items-center">
261
+ <span class="text-twb-accent orbitron">May 7, 2025</span>
262
+ <a href="http://twbhq.com/2025/05/07/elementor-150/" class="text-twb-primary hover:text-orange-400 orbitron">
263
+ LISTEN <i class="fas fa-arrow-right ml-1"></i>
264
+ </a>
265
+ </div>
266
+ </div>
267
+ </a>
268
+ </div>
269
+
270
+ <!-- Episode 2 -->
271
+ <div class="episode-card post-card rounded-lg overflow-hidden shadow-xl">
272
+ <a href="http://twbhq.com/2025/04/06/our-sample-episode-is-now-live/">
273
+ <div class="relative">
274
+ <img src="http://twbhq.com/wp-content/uploads/2025/04/twb2025-ver1-e1743998514395.png"
275
+ alt="Our Sample Episode" class="w-full h-48 object-cover">
276
+ </div>
277
+ <div class="p-6">
278
+ <h3 class="orbitron text-xl font-bold text-white mb-3">Our Sample Episode is now Live!</h3>
279
+ <p class="text-gray-300 mb-4">What started as a sample recording for another show somehow mutated into our official first episode. Oops. We're rolling with it.</p>
280
+ <div class="flex justify-between items-center">
281
+ <span class="text-twb-accent orbitron">April 6, 2025</span>
282
+ <a href="http://twbhq.com/2025/04/06/our-sample-episode-is-now-live/" class="text-twb-primary hover:text-orange-400 orbitron">
283
+ LISTEN <i class="fas fa-arrow-right ml-1"></i>
284
+ </a>
285
+ </div>
286
+ </div>
287
+ </a>
288
+ </div>
289
+
290
+ <!-- Episode 3 -->
291
+ <div class="episode-card post-card rounded-lg overflow-hidden shadow-xl">
292
+ <a href="http://twbhq.com/2025/04/06/community-guest-host-opportunity-now-available/">
293
+ <div class="relative">
294
+ <img src="http://twbhq.com/wp-content/uploads/2025/03/helldivers-e1743998151384.webp"
295
+ alt="Community guest host opportunity" class="w-full h-48 object-cover">
296
+ </div>
297
+ <div class="p-6">
298
+ <h3 class="orbitron text-xl font-bold text-white mb-3">Community guest host opportunity Now Available</h3>
299
+ <p class="text-gray-300 mb-4">We're excited to start featuring rotating guest hosts on The Wild Bunch Official Podcast!</p>
300
+ <div class="flex justify-between items-center">
301
+ <span class="text-twb-accent orbitron">April 6, 2025</span>
302
+ <a href="http://twbhq.com/2025/04/06/community-guest-host-opportunity-now-available/" class="text-twb-primary hover:text-orange-400 orbitron">
303
+ LEARN MORE <i class="fas fa-arrow-right ml-1"></i>
304
+ </a>
305
+ </div>
306
+ </div>
307
+ </a>
308
+ </div>
309
+ </div>
310
+
311
+ <div class="text-center mt-12">
312
+ <a href="http://twbhq.com/category/episodes/" class="orbitron bg-twb-primary hover:bg-orange-600 text-white px-8 py-3 rounded-full font-bold transition inline-block">
313
+ VIEW ALL EPISODES
314
+ </a>
315
+ </div>
316
+ </div>
317
+ </section>
318
+
319
+ <!-- About Section -->
320
+ <section class="py-16 px-4 bg-twb-secondary">
321
+ <div class="container mx-auto">
322
+ <div class="flex flex-col md:flex-row items-center">
323
+ <div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
324
+ <div class="pixel-border p-2 inline-block">
325
+ <img src="https://twbhq.com/wp-content/uploads/2025/03/DALL%C2%B7E-2025-03-27-01.47.41-A-bold-and-dynamic-podcast-logo-for-The-Wild-Bunch-Podcast-featuring-the-initials-DH-and-MZ-shaped-into-the-silhouette-of-a-sheeps-head.-The-de.webp"
326
+ alt="The Wild Bunch Podcast" class="w-full max-w-md mx-auto">
327
+ </div>
328
+ </div>
329
+ <div class="md:w-1/2">
330
+ <h2 class="orbitron text-3xl md:text-4xl font-bold text-white mb-6">ABOUT THE WILD BUNCH</h2>
331
+ <p class="text-gray-300 mb-6">
332
+ The Wild Bunch Podcast is where veteran gamers and new-gen enthusiasts collide. We're a passionate community that bridges the gap between old-school guild loyalty and the chaotic energy of modern gaming.
333
+ </p>
334
+ <p class="text-gray-300 mb-6">
335
+ Founded by DieHard (Casey) and MZ, we bring you unfiltered discussions, deep dives into gaming culture, and the loudest opinions this side of the digital frontier.
336
+ </p>
337
+ <div class="flex flex-wrap gap-4">
338
+ <a href="http://twbhq.com/about-twbs-podcast/" class="orbitron bg-twb-primary hover:bg-orange-600 text-white px-6 py-2 rounded font-bold transition">
339
+ OUR STORY
340
+ </a>
341
+ <a href="http://twbhq.com/guest-host-signup/" class="orbitron bg-transparent border-2 border-twb-accent hover:bg-twb-accent text-white px-6 py-2 rounded font-bold transition">
342
+ JOIN US
343
+ </a>
344
+ </div>
345
+ </div>
346
+ </div>
347
+ </div>
348
+ </section>
349
+
350
+ <!-- Press Release Section -->
351
+ <section class="py-16 px-4">
352
+ <div class="container mx-auto text-center">
353
+ <div class="max-w-4xl mx-auto">
354
+ <h2 class="orbitron text-3xl md:text-4xl font-bold text-white mb-6">PODCAST LAUNCHES – THE WILD BUNCH – PRESS RELEASE</h2>
355
+ <p class="text-twb-accent orbitron text-xl mb-8">FOR IMMEDIATE RELEASE</p>
356
+ <div class="text-5xl mb-8">🎙️</div>
357
+ <p class="text-gray-300 mb-8 text-left">
358
+ The Wild Bunch Official Podcast Launches: Legacy, Loyalty, and Loud Opinions—Straight from the Front Lines of Gaming Culture. April 2025 – After years of dominating leaderboards and forging unbreakable guild bonds, The Wild Bunch is taking their legendary camaraderie from voice chat to the airwaves.
359
+ </p>
360
+ <a href="http://twbhq.com/2025/03/17/podheads/" class="orbitron inline-block bg-twb-primary hover:bg-orange-600 text-white px-8 py-3 rounded-full font-bold transition">
361
+ READ FULL RELEASE
362
+ </a>
363
+ </div>
364
+ </div>
365
+ </section>
366
+
367
+ <!-- Footer -->
368
+ <footer class="py-12 px-4 bg-twb-secondary border-t-
369
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=diehardtwb/twbhq" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
370
+ </html>