mobmash.click/view/layout.php

18 lines
402 B
PHP
Raw Normal View History

2024-07-27 22:03:17 +00:00
<!DOCTYPE html>
<html>
<head>
2024-07-27 22:27:31 +00:00
<title><?= $title ?? ""; ?></title>
2024-07-27 22:03:17 +00:00
<link rel="stylesheet" type="text/css" href="/styles/main.css" />
2024-08-01 19:58:41 +00:00
<script type="application/javascript" src="/js/bundle.js"></script>
2024-07-27 22:03:17 +00:00
</head>
<body>
2024-07-29 20:26:00 +00:00
<nav>
</nav>
2024-07-27 22:03:17 +00:00
<?php
if (isset($content)) {
$content();
}
?>
</body>
</html>