46 lines
1.1 KiB
HTML
46 lines
1.1 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<head>
|
||
|
<title>Welcome to Paultopia</title>
|
||
|
<link rel="stylesheet" type="text/css" href="readable.min.css">
|
||
|
<style>
|
||
|
html {
|
||
|
background-image: url("bg.png");
|
||
|
background-color:transparent;
|
||
|
background-position: top center;
|
||
|
}
|
||
|
|
||
|
main {
|
||
|
background: #ffffffbb;
|
||
|
padding:0.2em 1em 0.2em 1em;
|
||
|
color: black;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<header>
|
||
|
<h1>Welcome to Paultopia</h1>
|
||
|
</header>
|
||
|
<hr/>
|
||
|
<main>
|
||
|
<p>A Luanti server run by Paul</p>
|
||
|
<p>If you would like access, please contact <a href="https://notnull.space/@paul">@paul@notnull.space</a></p>
|
||
|
<section id="players">
|
||
|
<h3>Current Players</h3>
|
||
|
<ul id="current_players">
|
||
|
<li>player one</li>
|
||
|
</ul>
|
||
|
</section>
|
||
|
<section id="modsenabled">
|
||
|
<h3>Mods Enabled</h3>
|
||
|
<ul id="current_mods">
|
||
|
<li>advtrains</li>
|
||
|
</ul>
|
||
|
</section>
|
||
|
</main>
|
||
|
<footer>
|
||
|
<p>© <a href="https://paulwilde.uk">Paul Wilde<a/></p>
|
||
|
</footer>
|
||
|
<script type="text/javascript" src="components.js"></script>
|
||
|
</body>
|
||
|
</html>
|