29 lines
752 B
Handlebars
29 lines
752 B
Handlebars
<!DOCTYPE html>
|
|
<html lang="{{@site.locale}}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>{{meta_title}}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="stylesheet" type="text/css" href="{{asset "built/screen.css"}}">
|
|
|
|
{{ghost_head}}
|
|
</head>
|
|
<body class="{{body_class}}">
|
|
{{> "site/topbar"}}
|
|
<div class="site-shell-wrap">
|
|
<div class="site-shell">
|
|
{{> "site/sidebar-left"}}
|
|
<div class="site-main">
|
|
{{{body}}}
|
|
</div>
|
|
{{> "site/sidebar-right"}}
|
|
</div>
|
|
</div>
|
|
|
|
{{ghost_foot}}
|
|
<script src="{{asset "built/theme.js"}}"></script>
|
|
</body>
|
|
</html>
|