-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdefault.hbs
More file actions
36 lines (31 loc) · 1020 Bytes
/
default.hbs
File metadata and controls
36 lines (31 loc) · 1020 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="{{@site.lang}}">
<head>
<title>{{meta_title}}</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="{{asset "css/bootstrap.min.css"}}">
<link rel="stylesheet" href="{{asset "css/main.css"}}">
{{ghost_head}}
</head>
<body>
<header class="header">
<div class="header__inner page-width">
<a class="header__logo" href="{{@site.url}}">
{{#if @site.logo}}
<img src="{{@site.logo}}" alt="{{@site.title}}">
{{else}}
{{@site.title}}
{{/if}}
</a>
<div class="header__nav">
{{navigation}}
</div>
</div>
</header>
<main>
{{{ body }}}
</main>
{{ ghost_foot }}
</body>
</html>