404 fixes and added pure twig

This commit is contained in:
2025-11-13 11:05:55 -08:00
parent 1cdf4f1fe8
commit 6d7a7a5e9d
8 changed files with 324 additions and 16 deletions

View File

@@ -1,15 +0,0 @@
<?php
// Define our status code and message
$status_code = 404;
$status_message = 'The requested resource could not be found.';
// Set the HTTP response code and message
http_response_code($status_code);
header("Content-Type: text/html");
?>
<h1>Error 404 Resource Not found</h1>
<p><?php echo $status_message; ?></p>
<p style="font-size:10px; margin-top:60px">Novaconium Default 404 page.</p>