website/_src/index.html

37 lines
853 B
HTML
Raw Normal View History

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