-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservers.html
88 lines (83 loc) · 4.27 KB
/
servers.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Servers - Harrison's Homigrad</title>
<link rel="icon" type="image/x-icon" href="hh_logo_square.ico">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/servers.css">
<link href="https://fonts.googleapis.com/css2?family=Squada+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Teko:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
<script src="js/config.js"></script>
<script src="js/servers.js"></script>
</head>
<body>
<div id="sales-banner"></div>
<div class="overlay"></div>
<div class="container">
<div class="content servers-content">
<div class="title-row">
<h1 class="title">SERVERS</h1>
<div style="text-align: right">
<button class="help-button" onclick="document.getElementById('joinGuide').style.display='flex'">
<i class="fas fa-question-circle"></i>
Join Guide
</button>
<div class="brand-notice" style="margin-top: 0.5rem; font-size: 0.8rem;">
Harrison's Homigrad is a brand of <a href="https://zgrad.gg" target="_blank">ZGRAD</a>
</div>
</div>
</div>
<div class="servers-grid" id="serversGrid">
<!-- Servers will be dynamically added here -->
</div>
<a href="/" class="btn back-btn">Back to Home</a>
</div>
</div>
<!-- Join Guide Modal -->
<div id="joinGuide" class="modal" onclick="this.style.display='none'">
<div class="modal-content" onclick="event.stopPropagation()">
<div class="modal-header">
<h2>How to Join</h2>
<button class="close-button" onclick="document.getElementById('joinGuide').style.display='none'">
<i class="fas fa-times"></i>
</button>
</div>
<div class="modal-body">
<h3>Step 1: Install Garry's Mod</h3>
<p>Purchase and install Garry's Mod from <a href="https://store.steampowered.com/app/4000/Garrys_Mod/" target="_blank">Steam</a>.</p>
<h3>Step 2: Joining our Servers</h3>
<p>There are two ways to join:</p>
<ol>
<li>Click the "Connect to Server" button on any server card above.</li>
<li>Or, open Garry's Mod, click 'Find Multiplayer Game', and wait for the Homigrad category to appear (not HOMIGRADCOM). Our servers have ZGRAD.GG in the title!</li>
</ol>
<h3>Step 3: Download Content</h3>
<p>When you first join, you'll automatically download the server content. This may take a few minutes depending on your internet speed.</p>
<p>If you see errors and missing content, be sure to set "Allow all custom files from server" under the "Game" category in your Garry's Mod options.</p>
<div class="note">
<i class="fas fa-info-circle"></i>
<p>Having trouble? Join our <a href="https://discord.gg/harrisons" target="_blank">Discord</a> for help!</p>
</div>
</div>
</div>
</div>
<script>
// Initialize sales banner
if (SiteConfig.sales.enabled) {
const banner = document.getElementById('sales-banner');
banner.innerHTML = `
<a href="${SiteConfig.sales.link}" class="banner-content">
<span class="banner-message">${SiteConfig.sales.message}</span>
<span class="banner-cta" style="color: ${SiteConfig.sales.highlightColor}">${SiteConfig.sales.accentText}</span>
</a>
`;
banner.style.backgroundColor = SiteConfig.sales.backgroundColor;
banner.style.color = SiteConfig.sales.textColor;
}
</script>
</body>
</html>