mobmash.click/view/layout.php

15 lines
304 B
PHP
Raw Normal View History

2024-07-27 22:03:17 +00:00
<!DOCTYPE html>
<html>
<head>
<title><?php echo $title ?? ""; ?></title>
<link rel="stylesheet" type="text/css" href="/styles/main.css" />
</head>
<body>
<?php
if (isset($content)) {
$content();
}
?>
</body>
</html>