41 lines
948 B
Handlebars
41 lines
948 B
Handlebars
<!DOCTYPE html>
|
|
<html lang="{{@site.lang}}">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" type="text/css" href="{{asset "built/screen.css"}}" />
|
|
<title>{{meta_title}}</title>
|
|
|
|
{{!-- Outputs important meta data and settings, should always be in <head> --}}
|
|
{{ghost_head}}
|
|
|
|
{{!-- Fonts --}}
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
|
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap"
|
|
rel="stylesheet">
|
|
{{!-- Simple little js lib --}}
|
|
<script src="https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.8.0/dist/alpine.min.js"></script>
|
|
</head>
|
|
|
|
<body class="{{body_class}} bg-gray-100 dark:bg-gray-800">
|
|
|
|
{{> navbar }}
|
|
|
|
{{{ body }}}
|
|
|
|
{{> footer }}
|
|
|
|
{{ghost_foot}}
|
|
|
|
{{#is "home"}}
|
|
|
|
|
|
|
|
{{/is}}
|
|
|
|
|
|
</body>
|
|
|
|
</html> |