26 lines
615 B
Handlebars
26 lines
615 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>
|
||
|
|
|
||
|
|
{{ghost_foot}}
|
||
|
|
<script src="{{asset "js/main.js"}}"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|