-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPage.php
67 lines (60 loc) · 2.71 KB
/
Page.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
declare(strict_types=1);
namespace theodorejb\PhpStv;
class Page
{
public static function render(string $title, string $html): string
{
$titleEscaped = htmlspecialchars($title);
return <<<_html
<!DOCTYPE html>
<html class="h-100" lang="en">
<head>
<meta charset="UTF-8">
<title>{$titleEscaped}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🐘</text></svg>">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<script>
(() => {
function getPreferredTheme() {
return window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
}
function setTheme(theme) {
document.documentElement.setAttribute('data-bs-theme', theme);
}
setTheme(getPreferredTheme());
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', () => {
setTheme(getPreferredTheme());
})
})();
</script>
</head>
<body class="d-flex flex-column h-100">
<header>
<nav class="navbar bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand" href="/">🐘 STV results</a>
</div>
</nav>
</header>
<main class="flex-shrink-0">
<div class="container pt-3">{$html}</div>
</main>
<footer class="footer mt-auto">
<nav class="navbar bg-body-tertiary">
<div class="container-fluid">
<span class="navbar-text">
Created with ❤️ by Theodore Brown
</span>
<div class="navbar-nav">
<a class="nav-link text-decoration-underline" href="https://github.com/theodorejb/php-stv">Source</a>
</div>
</div>
</nav>
</footer>
</body>
</html>
_html;
}
}