-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (51 loc) · 2.29 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
<!DOCTYPE HTML>
<html>
<head>
<title>Hexahedronic</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<link rel="stylesheet" href="css/semantic.min.css">
<link rel="stylesheet" href="css/style.css">
<link href='http://fonts.googleapis.com/css?family=Quicksand:300' rel='stylesheet' type='text/css'>
<script src="js/semantic.min.js"></script>
<script>
$(document).ready(function(){
var nodelist = $("email");
nodelist.each(function(i, el){
var val = el.getAttribute("value");
el.innerHTML = "<a href=\"mailto:" + val + "\">" + val + "</a>";
});
});
</script>
</head>
<body>
<div class="logo">
<span class="logoText">
Hexahedronic
</span>
</div>
<div id="mainContainer" class="ui divider"></div>
<div id="mainContainer">
<h3 class="ui header">
What is Hexahedronic?
</h3>
<p>Hexahedronic is a small, unoffical group of aspiring developers.</p>
<p>We are currently working on several projects, most of which are coded in the scripting language <a href="http://www.lua.org/" target="_blank">Lua</a>.</p>
<p>Our current primary members are:</p>
<ul>
<li><a href="https://github.com/CaveeJohnson/" target="_blank">Callum 'Cave' John Slaney</a> (<email value="[email protected]"></email>)</li>
<li><a href="https://github.com/TrenchFroast/" target="_blank">Andrew 'Ghosty' Austin</a> (<email value="[email protected]"/></email>)</li>
<li><a href="https://github.com/SteppuFIN/" target="_blank">Stepan 'Trixter' Fedotov</a> (<email value="[email protected]"/></email>)</a></li>
<li><a href="https://github.com/Liquidsocks" target="_blank">Chris 'Liquid' Palmer </a> (<email value="[email protected]"/></email>)</a></li>
</ul>
<h3>
Our current projects:
</h3>
<ul>
<li><a href="https://github.com/hexahedronic/basewars" target="_blank">BaseWars gamemode for Garry's Mod</a></li>
<li><a href="https://github.com/hexahedronic/luahexed" target="_blank">Experimental LuaJIT game framework</a></li>
<li><a href="https://github.com/hexahedronic/arista" target="_blank">Roleplaying framework for Garry's Mod</a></li>
</ul>
<p>Our main website is used for older projects and the BaseWars server forums, but will be remade <i>soon</i>.</p>
</div>
</body>
</html>