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.
45 lines
1.6 KiB
45 lines
1.6 KiB
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* @author Robert Strutts
|
|
* @copyright (c) 2026, Robert Strutts
|
|
* @license MIT
|
|
*/
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en-US">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<base href="<?= PROJECT_ASSETS_BASE_REF; ?>/">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="keywords" content="<?= $html->getKeywords(); ?>">
|
|
<meta name="description" content="<?= $html->getDescription(); ?>">
|
|
<meta name="author" content="<?= $html->getAuthor(); ?>">
|
|
<meta name="language" content="english">
|
|
<meta name="robots" content="<?= $html->getRobots(); ?>">
|
|
<meta name="copyright" content="2014-<?= date('Y'); ?>">
|
|
<title><?= $html->getTitle(); ?></title>
|
|
<!--
|
|
<link rel="apple-touch-icon" sizes="180x180" href="<?= PROJECT_ASSETS_BASE_REF ?>/favicon/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="<?= PROJECT_ASSETS_BASE_REF ?>/favicon/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="<?= PROJECT_ASSETS_BASE_REF ?>/favicon/favicon-16x16.png">
|
|
<link rel="icon" type="image/ico" href="<?= PROJECT_ASSETS_BASE_REF ?>/favicon/favicon.ico">
|
|
<link rel="manifest" href="<?= PROJECT_ASSETS_BASE_REF ?>/favicon/site.webmanifest">
|
|
-->
|
|
<?= $html->getHead(); ?>
|
|
<?= $html->getMainStyles(); ?>
|
|
<?= $html->getStyles(); ?>
|
|
<?= $html->getMainScripts(); ?>
|
|
</head>
|
|
<body <?= $html->getBody(); ?>>
|
|
|
|
<?= $local->pageOutput ?>
|
|
|
|
<?= $html->getFooter(); ?>
|
|
|
|
<?= $html->getScripts(); ?>
|
|
<?= $html->getJsOnReady(); ?>
|
|
</body>
|
|
</html>
|