The TryingToScale PHP framework.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
tts_framework/src/templates/dev_error.php

32 lines
885 B

<?php
declare(strict_types=1);
if (defined("PROJECT_ASSETS_BASE_REF")) {
$base_ref = PROJECT_ASSETS_BASE_REF;
} else {
$base_ref = "";
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<base href="<?= $base_ref ?>/">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="">
<meta name="description" content="">
<meta name="author" content="Robert Strutts">
<meta name="language" content="english">
<meta name="robots" content="">
<meta name="copyright" content="2014-<?= date('Y'); ?>">
<title>DEV ERROR!</title>
<link rel="shortcut icon" href="<?= $base_ref ?>/favicon/favicon.ico">
</head>
<body id="my-page">
<div id="wrap">
<div id="autosavemessage"></div>
<?= $local->page_output; ?>
</div> <!-- end wrap -->
</body>
</html>