Files
bunbun.dev/site/templates/main.html
2025-01-27 00:00:47 -08:00

35 lines
866 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/assets/favicon.svg" />
<link rel="stylesheet" type="text/css" href="/styles/style.css" />
<title>bunbun.dev</title>
</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>{{content}}</main>
</div>
<footer>
&copy; 2024 Winter Hille &mdash;
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en"
>BY-NC-SA 4.0</a
>
</footer>
</body>
<script type="module">
import init from "./wasm/cursor/pkg/wasm_cursor.js";
(async () => await init())();
</script>
</html>