-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (49 loc) · 1.56 KB
/
index.html
File metadata and controls
56 lines (49 loc) · 1.56 KB
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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>LUNF Staff Members</title>
<!-- CSS Styling -->
<link rel="stylesheet" href="css/stylesheet.css">
</head>
<body>
<!-- HTML Design and Layout by Hobino and le717 -->
<div id="staff">
<h2>Staff Members</h2>
<h3 id="adminh">Founders</h3>
<div id="admin" class="box">
<ul>
<li><a target="_blank" href="u1">LegoFan101</a></li>
<li><a target="_blank" href="u10">Grizzly10513</a></li>
<li><a target="_blank" href="u52">CapnSkye</a></li>
<li><a target="_blank" href="u24">Cabey9</a></li>
<li><a target="_blank" href="u11">Hobino</a></li>
<li><a target="_blank" href="u109">rioforce</a></li>
</ul>
</div>
<h3 id="modh">Mythrans</h3>
<div id="mod" class="box">
<ul>
<li><a target="_blank" href="u100">le717</a></li>
<li><a target="_blank" href="u188">Nealybealy</a></li>
</ul>
</div>
<h3 id="retiredh">Retired Staff</h3>
<div id="retired" class="box">
<ul>
<li><a target="_blank" href="u5">agentminky</a></li>
</ul>
</div>
<!-- Minifigure image, taken by Hobino -->
<img id="minifig" alt="Image of minifigure" src="images/minifig.png" />
</div>
<script>
/* Automatically add root link to LUNF for each member */
var links = document.querySelectorAll("a");
for (var i = 0; i < links.length; i += 1) {
var userID = links[i].getAttribute("href");
links[i].href = "http://legouniversenews.forummotion.com/" + userID;
}
</script>
</body>
</html>