31 lines
937 B
Handlebars
31 lines
937 B
Handlebars
<!DOCTYPE html>
|
|
<html lang="{{@site.lang}}">
|
|
<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"}}">
|
|
{{ghost_head}}
|
|
</head>
|
|
<body class="{{body_class}} font-sans bg-gray-900 text-gray-100 antialiased">
|
|
|
|
<div class="min-h-screen flex flex-col">
|
|
{{> header}}
|
|
|
|
<main class="flex-grow">
|
|
{{{body}}}
|
|
</main>
|
|
|
|
{{> footer}}
|
|
</div>
|
|
|
|
<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>
|
|
|
|
{{ghost_foot}}
|
|
<script src="{{asset "js/main.js"}}"></script>
|
|
</body>
|
|
</html>
|