mobmash.click/view/layout.php

29 lines
1,008 B
PHP
Raw Normal View History

2024-07-27 22:03:17 +00:00
<!DOCTYPE html>
2024-08-02 19:47:49 +00:00
<html lang="en">
2024-07-27 22:03:17 +00:00
<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-03 15:19:24 +00:00
<link rel="stylesheet" type="text/css" href="/styles/fonts.css" />
<link rel="stylesheet" type="text/css" href="/fonts/fontawesome/css/font-awesome.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>
<nav data-hx-boost="true">
<ul class="left">
<li><a href="/">MobMash</a></li>
<li><a href="/results">Results</a></li>
</ul>
<ul class="right">
<li><a href="/about">About</a></li>
<li><a href="https://github.com/overflowerror/mobmash.click">Source</a></li>
<li><a href="/privacy">Privacy</a></li>
</ul>
2024-07-29 20:26:00 +00:00
</nav>
2024-07-27 22:03:17 +00:00
<?php
if (isset($content)) {
$content();
}
?>
</body>
</html>