mobmash.click/view/layout.php

43 lines
1.6 KiB
PHP
Raw Normal View History

2024-07-27 22:03:17 +00:00
<!DOCTYPE html>
2024-08-03 22:03:52 +00:00
<?php
function makeNavigationLink(string $name, string $url) {
$currentPath = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);
$targetPath = parse_url($url, PHP_URL_PATH);
$targetHost = parse_url($_SERVER['REQUEST_URI'], PHP_URL_HOST);
$active = false;
if ($targetHost === NULL && $currentPath === $targetPath) {
$active = true;
}
?>
<li class="menu-item <?= $active ? "active" : "" ?>"><a href="<?= $url ?>"><?= $name ?></a></li>
<?php
}
?>
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">
2024-08-03 22:03:52 +00:00
<?php makeNavigationLink("MobMash", "/"); ?>
<?php makeNavigationLink("Result", "/results"); ?>
</ul>
<ul class="right">
2024-08-03 22:03:52 +00:00
<?php makeNavigationLink("About", "/about"); ?>
<?php makeNavigationLink("Source", "https://github.com/overflowerror/mobmash.click"); ?>
<?php makeNavigationLink("Privacy", "/privacy"); ?>
</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>