Files
tgirl.city/public/404.php
2025-11-20 01:00:38 -08:00

28 lines
765 B
PHP

<?php
require_once $_SERVER['DOCUMENT_ROOT'] . '/../vendor/autoload.php';
use Dotenv\Dotenv;
$dotenv = Dotenv::createImmutable($_SERVER['DOCUMENT_ROOT'] . '/..');
$dotenv->load();
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>404 Not Found | <?= $_ENV['SITE_NAME'] ?></title>
<link rel="stylesheet" href="/assets/style.css">
<meta name="theme-color" content="<?= $_ENV['THEME_COLOR'] ?>" />
<meta generator='tgirl.city <?= htmlspecialchars($_ENV['VERSION']) ?>'>
</head>
<body>
<div class="container">
<h1>404</h1>
<p>Oops! this page doesn't exist!</p>
<a href="/" class="btn">Back to <?= $_ENV['SITE_NAME'] ?>!</a>
</div>
</body>
</html>