Initial commit

This commit is contained in:
2026-05-18 23:20:54 +02:00
commit 2461ec344c
18 changed files with 3638 additions and 0 deletions

2
_includes/footer.njk Normal file
View File

@ -0,0 +1,2 @@
<footer>
</footer>

36
_includes/head.njk Normal file
View File

@ -0,0 +1,36 @@
<head>
{% if title %}
{% set pageTitle %}{{ title }} | {{ metadata.title }}{% endset %}
{% else %}
{% set pageTitle = metadata.title %}
{% endif %}
<title>{{ pageTitle }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<!-- Meta -->
<link rel="canonical" href="/" />
<meta name="description" content="{{ metadata.description }}" />
<meta name="robots" content="index,follow" />
<meta property="og:title" content="{{ pageTitle }}" />
<meta property="og:type" content="article" />
<meta property="og:url" content="/" />
<meta property="og:description" content="{{ metadata.description }}" />
{#
<link rel="alternate" href="/feed.xml" type="application/atom+xml" title="{{ metadata.title }}">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<meta property="og:image" content="" />
<meta property="og:image:alt" content="" />
#}
<meta name="generator" content="{{ eleventy.generator }}">
<!-- CSS -->
<style>{% include "css/main.css" %}</style>
<style>{% getBundle "css" %}</style>
{#
<!-- JS -->
<script type="module">{% getBundle "js" %}</script>
#}
</head>

4
_includes/header.njk Normal file
View File

@ -0,0 +1,4 @@
<header>
<nav>
</nav>
</header>

View File

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
{% include "head.njk" %}
<body>
<div id="content">
{% include "header.njk" %}
<main id="main">
{{ content | safe }}
</main>
</div>
{% include "footer.njk" %}
<!-- This page `{{ page.url }}` was built on {% currentBuildDate %} -->
</body>
</html>

View File

@ -0,0 +1,7 @@
---
layout: base.njk
---
<h1>{{ title }}</h1>
{{ content | safe }}