website/_src/index.html
2026-03-06 11:03:17 +02:00

37 lines
853 B
HTML

<html lang="en">
<head>
<title>{{site.name}}{% if title %} - {{title}}{% endif %}</title>
{% include "meta.njk" %}
<link rel="icon" href="/assets/img/icon/sundae.png" />
<link rel="stylesheet" href="/assets/css/reset.css" />
<link rel="stylesheet" href="/assets/css/default/index.css" />
</head>
<body id="index">
<header>
<h1>
<a href="/home">
<img
src="/assets/img/theme/citrus/enter.png"
alt="Link to home page"
/>
</a>
</h1>
</header>
<main>
<a rel="me" href="{{outgoing.mastodon[0].src}}" style="display: none"
>Mastodon</a
>
</main>
<footer>
<p>
This site eats cookies for breakfast.
<br />
<i>*nom nom nom*</i>
<br />
<sub>(only used for simple interactivity)</sub>
<br />Best viewed with an up-to-date browser!
</p>
</footer>
</body>
</html>