blob: 30e9638a76df191fc5e4e7bf05f9c8df16db2e97 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="robots" content="index, follow">
<meta name="theme-color" content="#2b2b2e">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/styles.css">
<title><?php echo htmlspecialchars($title ?? "No Way Forward Human");?></title>
</head>
<body>
<header>
<nav>
<div class="fadeout-left"></div>
<a href="/home/index.php">Home</a>
<a href="/test/index.php">Test</a>
<a href="/sample_archive/index.php">Sample Archive</a>
<div class="flex-expand"></div>
<a href="/login/index.php">Login</a>
<a href="/register/index.php">Register</a>
<div class="fadeout-right"></div>
</nav>
</header>
<article>
|