2026-02-17 17:53:00 +01:00
|
|
|
<!DOCTYPE html>
|
2026-02-17 18:54:09 +01:00
|
|
|
<html lang="{{@site.lang}}" data-theme="dark" class="hidden">
|
2026-02-17 17:53:00 +01:00
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
<title>{{meta_title}}</title>
|
|
|
|
|
<link rel="stylesheet" href="{{asset "built/screen.css"}}">
|
2026-02-17 18:54:09 +01:00
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Playfair+Display:wght@700&display=swap" rel="stylesheet">
|
2026-02-17 17:53:00 +01:00
|
|
|
{{ghost_head}}
|
|
|
|
|
</head>
|
2026-02-17 18:54:09 +01:00
|
|
|
<body class="{{body_class}} font-sans antialiased">
|
2026-02-17 17:53:00 +01:00
|
|
|
|
|
|
|
|
<div class="min-h-screen flex flex-col">
|
|
|
|
|
{{> header}}
|
|
|
|
|
|
|
|
|
|
<main class="flex-grow">
|
|
|
|
|
{{{body}}}
|
|
|
|
|
</main>
|
|
|
|
|
|
|
|
|
|
{{> footer}}
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-02-17 18:54:09 +01:00
|
|
|
{{> mobile-menu}}
|
|
|
|
|
|
2026-02-17 18:29:09 +01:00
|
|
|
<div id="lightbox" class="hidden fixed inset-0 bg-black bg-opacity-80 z-50 flex items-center justify-center">
|
|
|
|
|
<button id="lightbox-close" class="absolute top-4 right-4 text-white text-3xl">×</button>
|
|
|
|
|
<img id="lightbox-image" src="" alt="Lightbox image" class="max-w-full max-h-full">
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-02-17 17:53:00 +01:00
|
|
|
{{ghost_foot}}
|
|
|
|
|
<script src="{{asset "js/main.js"}}"></script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|