mirror of
https://codeberg.org/bunbun/bunbun.dev
synced 2025-01-22 04:34:29 -08:00
27 lines
607 B
HTML
27 lines
607 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<a href="https://bunbun.dev">bunbun.dev</a>
|
|
<nav>
|
|
<a href="https://bunbun.dev/about">About</a>
|
|
</nav>
|
|
</header>
|
|
<div class="content">
|
|
<main>%s</main>
|
|
</div>
|
|
<footer>
|
|
© 2024 Winter Hille —
|
|
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en"
|
|
>BY-NC-SA 4.0</a
|
|
>
|
|
</footer>
|
|
</body>
|
|
</html>
|