Initial commit

This commit is contained in:
Timon Ostertun
2020-09-19 12:56:10 +02:00
commit 139543199e
618 changed files with 128530 additions and 0 deletions

24
content/404.php Normal file
View File

@@ -0,0 +1,24 @@
<?php
$sp['output'] = '<div class="card bg-transparent" data-card-height="cover">
<div class="card-center text-center">
<i class="fa fa-exclamation-triangle fa-8x color-red2-dark"></i>
<h1 class="fa-6x mt-5 font-900">404</h1>
<h4 class="mb-5 mt-3">Seite nicht gefunden</h4>
<p>
Die gesuchte Seite wurde nicht gefunden.<br>
Wie w&auml;re es mit der Homepage?
</p>
<div class="row ml-5 mr-5 mt-5 mb-0">
<div class="col-6">
<a href="' . LINK_PRE . 'index" class="btn btn-m rounded-sm btn-full bg-red2-dark text-uppercase font-900">Zur Startseite</a>
</div>
<div class="col-6">
<a href="' . LINK_PRE . 'contact" class="btn btn-m rounded-sm btn-full bg-red2-dark text-uppercase font-900">Kontakt</a>
</div>
</div>
</div>
</div>';
?>