Add doctype to index.php's default output

This commit is contained in:
Joshua Ramon Enslin 2022-06-28 17:40:12 +02:00
parent 05bcacf767
commit 648e777209
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE

View File

@ -43,6 +43,7 @@ if (!empty($_GET['id']) and !($id = filter_var($_GET['id'], FILTER_VALIDATE_INT)
}
echo '
<!doctype html>
<style>
body { font-family: Helvetica, Arial, Calibri; }
code { font-size: 1.4em; }
@ -90,6 +91,7 @@ foreach ($eventTypes as $type) {
<p>' . $type['ereignistyp_explica'] . '</p>
</div>
<hr>
';
}