mirror of
https://github.com/sigmasternchen/mobmash.click
synced 2025-03-15 16:19:02 +00:00
15 lines
304 B
PHP
15 lines
304 B
PHP
![]() |
<!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>
|