Initial commit of Palina Ghost theme

This commit is contained in:
2026-02-17 17:53:00 +01:00
commit f5a5eed8ab
11 changed files with 236 additions and 0 deletions

25
default.hbs Normal file
View File

@@ -0,0 +1,25 @@
<!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>
{{ghost_foot}}
<script src="{{asset "js/main.js"}}"></script>
</body>
</html>