offline day

This commit is contained in:
Ben Harris 2019-03-20 22:46:50 -04:00
parent ebbe232077
commit 6ca5d668d0
Signed by untrusted user: ben
GPG Key ID: 4E0AF802FFF7960C
2 changed files with 30 additions and 0 deletions

View File

@ -1,4 +1,10 @@
<?php
if (!isset($_GET["dismiss"])
|| (isset($_GET["dismiss"]) && $_GET["dismiss"] != "true")) {
header("Location: /offline.html");
die();
}
include 'header.php';
require __DIR__.'/vendor/autoload.php';
$parser = new Mni\FrontYAML\Parser();

24
offline.html Normal file
View File

@ -0,0 +1,24 @@
<!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">
<link rel="stylesheet" href="https://tilde.team/css/hacker.css">
<title>saveyourinternet offline day</title>
</head>
<body>
<div class="container">
<h1>tilde.team is shutting down</h1>
<p>not really. but, with the eu passing article 13, this could very well happen to us, since we cannot possible filter every piece of content users put here.</p>
<p>please contact your lawmakers, and let them know you do not support this, because you want services like ours to continue to operation, and provide a valuable service to users.</p>
<p>now, you can continue onto the site by clicking <a href="/?dismiss=true">here</a>.</p>
<h4><a href="https://copyright-blackout.eu/">#321EUOfflineDay</a></h4>
</div>
</body>
</html>