36 lines
772 B
Handlebars
36 lines
772 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.0" />
|
|
|
|
<title>{{meta_title}}</title>
|
|
{{ghost_head}}
|
|
|
|
<link rel="stylesheet" type="text/css" href="{{asset "screen.css"}}" />
|
|
|
|
</head>
|
|
<body {{body_class}}>
|
|
|
|
<header class="gh-head">
|
|
<a href="{{@site.url}}">
|
|
{{#if @site.logo}}
|
|
<img class="site-logo" src="{{img_url @site.logo absolute="true"}}" height="50" alt="{{@site.title}}" />
|
|
{{else}}
|
|
<h2>{{@site.title}}</h2>
|
|
{{/if}}
|
|
</a>
|
|
{{navigation}}
|
|
</header>
|
|
|
|
<main>
|
|
{{{body}}}
|
|
</main>
|
|
|
|
<footer class="page-footer">
|
|
</footer>
|
|
|
|
{{ghost_foot}}
|
|
</body>
|
|
</html>
|