Add base theme files

This commit is contained in:
2023-01-05 00:02:16 +01:00
commit 0c415542ce
11 changed files with 94 additions and 0 deletions

26
default.hbs Normal file
View File

@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="{{@site.locale}}">
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{@site.title}}</title>
{{ghost_head}}
{{!-- Outputs important meta data and settings, should always be in <head> --}}
</head>
<body class="{{body_class}}" onload="openPolicyPopup()">
{{{body}}}
{{!-- All content gets inserted here, index.hbs, post.hbs, etc --}}
{{!-- <footer> --}}
{{ghost_foot}}
{{!-- Outputs important scripts - should always be included before closing body tag --}}
</body>
</html>