-
Notifications
You must be signed in to change notification settings - Fork 2
/
default.hbs
50 lines (46 loc) · 1.77 KB
/
default.hbs
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
{{! Document Settings }}
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
{{! Page Meta }}
<title>{{meta_title}}</title>
<meta name="description" content="{{meta_description}}" />
<meta name="google-site-verification" content="EtRhtgTCuw3FB1j1_zh8VpOllMNVJR42NGXFrS9BG7E" />
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="{{asset "favicon.ico"}}">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
{{! Styles'n'Scripts }}
<link rel="stylesheet" type="text/css" href="{{asset "css/screen.css"}}" />
{{ghost_head}}
</head>
<body class="{{body_class}} nav-closed">
<div class="wrapper-masthead">
<div class="container">
<header class="masthead clearfix">
{{#if @blog.logo}}
<a class="site-avatar" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="{{@blog.title}}" /></a>{{/if}}
<div class="site-info">
<h1 class="site-name"><b><a href="/">{{@blog.title}}</a></b></h1>
<p class="site-description">{{@blog.description}}</p>
</div>
{{navigation}}
</header>
</div>
</div>
{{! Everything else gets inserted here }}
{{{body}}}
<div class="wrapper-footer">
<div class="container">
<footer class="footer">
<a href="https://github.com/GhostTheme"><i class="svg-icon github"></i></a>
<a href="https://www.twitter.com/sudoask"><i class="svg-icon twitter"></i></a>
<a href="https://blog.sudoask.com/rss"><i class="svg-icon rss"></i></a>
</footer>
</div>
</div>
{{ghost_foot}}
</body>
</html>