This commit is contained in:
Ben Harris 2018-09-14 03:13:01 -04:00
parent a925c64065
commit f937b03a2f
Signed by untrusted user: ben
GPG Key ID: 4E0AF802FFF7960C
3 changed files with 45 additions and 0 deletions

10
public_html/footer.php Normal file
View File

@ -0,0 +1,10 @@
<hr>
<footer><a href="https://tildegit.org/sose/SLBR">git repo</a></footer>
</div>
<br>
<br>
</body>
</html>

20
public_html/header.php Normal file
View File

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="tildeverse suicide linux battle royale">
<meta name="author" content="Ben Harris">
<title><?=$title ?? "slbr.tildeverse.org"?></title>
<link rel="stylesheet" href="https://tilde.team/css/hacker.css">
<link rel="stylesheet" href="https://tilde.team/css/fork-awesome.css">
<?=$additional_head ?? ""?>
<?php unset($title); unset($additional_head); ?>
</head>
<body style="padding-top: 70px;">
<div class="container">

15
public_html/index.php Normal file
View File

@ -0,0 +1,15 @@
<?php
$title = 'suicide linux battle royale';
include 'header.php';
?>
<h1>SUICIDE LINUX BATTLE ROYALE</h1>
<p>typo? you're out.</p>
<p>when you play, you'll be dropped in a fresh vm. on the way to your goal, any mistyped command will delete your vm and you'll be eliminated.</p>
<p>contact <a href="https://ben.tilde3.org">~ben</a> or <a href="https://tilde.town/~sose/">sose</a> on <a href="https://tilde.chat">tilde.chat</a> (in the <a href="https://web.tilde.chat/?join=slbr">#slbr</a> channel) to sign up.</p>
<?php
include 'footer.php';