.templates
about
css
errors
styles
400.php
401.php
403.php
404.php
410.php
414.php
500.php
images
minecraft
movienight
smz3mw
src
startpage
styles
terraria
.dockerignore
.gitignore
.gitlab-ci.yml
.htaccess
Dockerfile
Jenkinsfile
README.md
favicon.ico
index.php
logo.png
19 lines
503 B
PHP
19 lines
503 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-meta.php';?>
|
|
<link href="/errors/styles/styles.css" type="text/css" rel="stylesheet" />
|
|
<title>410 Gone</title>
|
|
</head>
|
|
<body>
|
|
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-header.php';?>
|
|
<div class="content">
|
|
<div class="section">
|
|
<h1>...</h1>
|
|
<p>Whatever's here isn't anymore.</p>
|
|
</div>
|
|
</div>
|
|
<?php include $_SERVER['DOCUMENT_ROOT'].'/src/common-footer.php';?>
|
|
</body>
|
|
</html>
|