mirror of
https://github.com/maciejpedzich/six-degs-of-f1.git
synced 2025-04-06 16:01:11 +02:00
61 lines
1.2 KiB
Plaintext
61 lines
1.2 KiB
Plaintext
---
|
|
import '@picocss/pico/css/pico.blue.min.css';
|
|
---
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
<title>Six Degrees of Formula One</title>
|
|
</head>
|
|
<body class="container">
|
|
<header>
|
|
<nav aria-label="Main navigation">
|
|
<ul>
|
|
<li><a href="/about">About</a></li>
|
|
<li><a href="/credits">Credits</a></li>
|
|
<li>
|
|
<a href="https://github.com/maciejpedzich/sixdegs">Source Code</a>
|
|
</li>
|
|
</ul>
|
|
<ul>
|
|
<li>theme switch</li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
<slot />
|
|
</main>
|
|
<div id="spacer"></div>
|
|
<footer>
|
|
<small>
|
|
Made with 🧠 by <a href="https://maciejpedzi.ch">Maciej Pędzich</a>
|
|
</small>
|
|
</footer>
|
|
</body>
|
|
</html>
|
|
|
|
<style>
|
|
body {
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.container {
|
|
max-width: 65ch;
|
|
text-align: center;
|
|
}
|
|
|
|
#spacer {
|
|
flex: 1 0 auto;
|
|
}
|
|
|
|
footer {
|
|
border-top: 1px solid var(--pico-muted-border-color);
|
|
padding: 1rem;
|
|
}
|
|
</style>
|