Started building a Website with Jekyll based on Uno-Timeline

This commit is contained in:
Waldehyd 2025-08-31 20:00:05 +02:00
commit 2d9e9fb878
103 changed files with 6371 additions and 0 deletions

21
_layouts/default.html Normal file
View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ page.title }}</title>
<link rel="stylesheet" href="{{ site.baseurl }}/css/main.css?{{ site.time | date: '%s%N' }}">
{% include head.html %}
</head>
<body>
{% include header.html %}
<div class="content-wrapper">
<div class="left-line"></div>
<div class="content-wrapper__inner">
{{ content }}
</div>
{% include footer.html %}
</div>
</body>
</html>