28 lines
1009 B
HTML
28 lines
1009 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>$title · Sticknife</title>
|
|
<link rel="icon" href="/static/img/favicon.ico" sizes="any">
|
|
<link rel="icon" type="image/png" href="/static/img/charon-mark.png">
|
|
<link rel="apple-touch-icon" href="/static/img/charon-mark.png">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=GFS+Didot&family=GFS+Neohellenic:wght@400;700&display=swap">
|
|
<link rel="stylesheet" href="/static/css/styles.css">
|
|
$head
|
|
</head>
|
|
<body class="$body_class">
|
|
<main class="page">
|
|
<nav class="topbar">
|
|
<a class="home-link" href="/">Sticknife</a>
|
|
<div class="navlinks">$nav</div>
|
|
</nav>
|
|
<section class="$shell_class">
|
|
$content
|
|
</section>
|
|
</main>
|
|
</body>
|
|
</html>
|