More loader

This commit is contained in:
2024-07-20 14:04:08 +02:00
parent 0951285ff8
commit 7461a42586
10 changed files with 161 additions and 40 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
namespace Pages\NotFound;
class NotFound
{
public function render()
{
echo <<<END
<h1>Not Found</h1>
END;
}
}