-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (61 loc) · 3.81 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-U1DAWAznBHeqEIlVSCgzq+c9gqGAJn5c/t99JyeKa9xxaYpSvHU5awsuZVVFIhvj" crossorigin="anonymous"></script>
<title>ServJam</title>
</head>
<body class="bg-dark text-light text-opacity-75">
<nav class="navbar navbar-expand-lg navbar-dark bg-success">
<div class="container-fluid">
<a class="navbar-brand" href="./">ServJam</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Events
</a>
<ul class="dropdown-menu dropdown-menu-dark" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="summer21">ServJam Summer 2021</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="https://discord.gg/GY5ArwQuN8" target="_blank">Discord</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/ServJam" target="_blank">GitHub</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container" style="margin-top: 1em;">
<div class="flex-row">
<div class="flex-column"></div>
<div class="flex-column">
<p class="h2"><b>What is ServJam?</b> <i>7 August 2021</i></p>
<p>
ModJam/ModFest is an event where modder spend two weeks making mods from scratch, typically
following a theme. ServJam is a ModJam for server-side only mods. It has taken some time for
this great event to come to fruition. Over a year ago, a Discord server was created: Fabric
Server-Side Development. Since that day, there have been talks and whispers of a potential
servjam, but it simply never happened. Here is the original post from June 2020:
</p>
<img src="assets/the-beginning.png" class="rounded mx-auto d-block img-fluid">
<p>
Since then, far more than 6 people have been interested, yet no servjam has occurred! This past
summer, there were numerous mentions of it, and we finally decided to do it. If it is a success,
which I have high hopes that it will be, we'll continue to host ServJams (hopefully) more
frequently than once a year.
</p>
</div>
<div class="flex-column"></div>
</div>
</div>
</body>
</html>