-
Notifications
You must be signed in to change notification settings - Fork 0
/
muds.html
39 lines (39 loc) · 1.21 KB
/
muds.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
---
layout: list
title: MUDs hosted by Vineyard
---
<h1>A few of the MUDs hosted by Vineyard</h1>
<p style="text-align:justify">If you are hosted by Vineyard and want to have your MUD listed,
<script language="JavaScript">
var username = "hostme";
var hostname = "vineyard.haus";
var linktext = "let us know";
document.write("<a href='" + "mail" + "to:" + username + "@" + hostname + "'>" + linktext + "</a>");
</script>!
</p>
<br>
<center>
<table class="table">
<thead>
<tr>
<th scope="col">MUD Name</th>
<th scope="col">Server</th>
<th scope="col">Connection Info</th>
<th scope="col"> </th>
</tr>
</thead>
<tbody>
{% assign mudlist = site.data.mud_list.muds | sort: 'mud_name' %}
{% for mud in mudlist %}
<tr>
<td>{{ mud.mud_name }}</td>
<td>{{ mud.server }}</td>
<td><a href="telnet://{{ mud.server_address }}:{{ mud.server_port }}">{{ mud.server_address }} {{
mud.server_port }}</td>
<td>{% if mud.site %}<a href="http://{{ mud.site }}" target="_blank"><img src="/images/site.png" border="0">{%
endif %}</a></td>
</tr>
{% endfor %}
</tbody>
</table>
</center>