Zap-Ghost-Theme/default.hbs

37 lines
772 B
Handlebars
Raw Permalink Normal View History

2020-05-26 23:43:54 -07:00
<!DOCTYPE html>
2022-12-29 12:40:48 -08:00
<html lang="{{@site.locale}}">
2020-05-26 23:43:54 -07:00
<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" />
2020-07-14 08:34:03 -07:00
2020-05-26 23:43:54 -07:00
<title>{{meta_title}}</title>
{{ghost_head}}
2020-05-27 00:06:36 -07:00
2024-06-07 10:23:55 -07:00
<link rel="stylesheet" type="text/css" href="{{asset "screen.css"}}" />
2020-05-26 23:43:54 -07:00
</head>
2020-07-14 08:34:03 -07:00
<body {{body_class}}>
<header class="gh-head">
<a href="{{@site.url}}">
2020-07-14 10:22:04 -07:00
{{#if @site.logo}}
<img class="site-logo" src="{{img_url @site.logo absolute="true"}}" height="50" alt="{{@site.title}}" />
2020-07-14 08:34:03 -07:00
{{else}}
<h2>{{@site.title}}</h2>
{{/if}}
</a>
2020-05-27 00:18:19 -07:00
{{navigation}}
2020-05-27 00:06:36 -07:00
</header>
2020-05-26 23:43:54 -07:00
2020-05-27 00:06:36 -07:00
<main>
2020-05-26 23:43:54 -07:00
{{{body}}}
</main>
2020-07-14 08:34:03 -07:00
<footer class="page-footer">
2020-05-26 23:43:54 -07:00
</footer>
{{ghost_foot}}
</body>
2022-12-29 12:40:48 -08:00
</html>