website/_src/index.html

25 lines
714 B
HTML
Raw Permalink Normal View History

2025-09-11 19:30:58 +03:00
<html lang="en">
2025-06-11 09:36:54 +03:00
<head>
<title>{{site.name}}</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">
<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>
<a rel="me" href="{{outgoing.mastodon[0].src}}" style="display: none">Mastodon</a>
2025-09-11 19:30:58 +03:00
</main>
<footer>
<p>This website uses JavaScript and local storage for simple interactivity.</p>
<p>Best viewed with an up-to-date browser!</p>
2025-09-11 19:30:58 +03:00
</footer>
2025-06-11 09:36:54 +03:00
</body>
</html>