-
Notifications
You must be signed in to change notification settings - Fork 0
/
servers.html
50 lines (48 loc) · 1.72 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
---
layout: default
title: Servers
description: List of dedicated servers hosted by USA Channel 22
---
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">USA Channel 22 Servers</h3>
</div>
<div class="panel-body">
This is a list of most of the dedicated servers that we host. Some servers may be missing from this list. Many of these servers are intended for our own use and are whitelisted to prevent abuse. If you are interested, contact us to request access.
<br><br>
View the status of some of our other services on our Uptime Robot page: <a href="https://stats.uptimerobot.com/573oyH30Q">https://stats.uptimerobot.com/573oyH30Q</a>
</div>
</div>
{% assign last_gametitle = "none" %}
{% for type in site.data.servers %}
{% unless last_gametitle == type.gametitle %}
{% assign last_gametitle = type.gametitle %}
<div class="panel panel-default">
<div class="panel-heading">
{% if type.gamedownload %}
<a href="{{ type.gamedownload }}" class="pull-right">(Download Here)</a>
{% endif %}
<h3 class="panel-title">{{ type.gametitle }}</h3>
</div>
<div class="table-responsive">
<table class="table table-bordered">
<tbody>
{% for entry in site.data.servers %}
{% if entry.gametitle == type.gametitle %}
<tr>
<th class="col-md-4">{{ entry.servertitle }}</th>
{% if entry.serverurl %}
<td><a href="{{ entry.serverurl }}">{{ entry.serveraddress }}</a></td>
{% else %}
<td>{{ entry.serveraddress }}</td>
{% endif %}
<td class="col-md-2">{{ entry.serveraccess }}</td>
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>
</div>
</div>
{% endunless %}
{% endfor %}