-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
73 lines (73 loc) · 2.6 KB
/
contact.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Contact | Lord of the Test</title>
<link rel="stylesheet" type="text/css" href="assets/css/main.css"/>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css" integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt" crossorigin="anonymous">
<script defer src="assets/js/main.js"></script>
</head>
<body>
<header>
<nav>
<a class="fas fa-home" href="index.html"></a>
<a class="fas fa-bars" href="javascript:void(0)" onclick="showMenu()"></a>
<div class="header">
<ul class="navbar" id="navbar">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="download.html">Download</a></li>
<li><a href="archive.html">Archive</a></li>
<li><a class="active" href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
</header>
<div class="page-content">
<h1 class="center lotr-font">Contact</h1>
<section class="contact-main">
<div class="main-info">
<h2>Github</h2>
<a href="https://github.com/minetest-LOTR/Lord-of-the-Test">https://github.com/minetest-LOTR/Lord-of-the-Test</a>
</div>
<div class="main-info">
<h2>IRC</h2>
<p>#lordofthetest on irc.libera.chat</p>
</div>
</section>
<h2 class="contributors-heading">Main Contributors</h2>
<section class="contributors">
<div class="contributorInfo">
<h3>Amaz</h3>
<p><b>Email:</b> <a href="mailto:[email protected]">[email protected]</a></p>
<p><b>GitHub:</b> Amaz1</p>
<p><b>IRC:</b> Amaz</p>
<p><b>Minetest Forum:</b> Amaz</p>
</div>
<div class="contributorInfo">
<h3>fishyWET</h3>
<p><b>Email:</b> <a href="mailto:[email protected]">[email protected]</a></p>
<p><b>GitHub:</b> neinwhal</p>
<p><b>IRC:</b> neinwhal</p>
<p><b>Minetest Forum:</b> fishyWET</p>
</div>
<div class="contributorInfo">
<h3>Lumidify</h3>
<p><b>Email:</b> nobody [at] lumidify [dot] org</p>
<p><b>Github:</b> lumidify</p>
<p><b>IRC:</b> lumidify</p>
<p><b>Minetest Forum:</b> lumidify</p>
</div>
</section>
</div>
<footer>
<h6 id="copyright"></h6>
<script>
//Current copyright year script
var time = new Date();
document.getElementById('copyright').innerHTML = '© Copyright ' + time.getFullYear() + ' Minetest-LOTR';
</script>
</footer>
</body>
</html>