26 lines
643 B
Handlebars
26 lines
643 B
Handlebars
<!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> |