-
Notifications
You must be signed in to change notification settings - Fork 6
/
default.hbs
66 lines (50 loc) · 1.78 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="{{@site.locale}}">
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
{{! Meta }}
{{#is "page,post,home,index,tag,author,private" }}
<title>{{meta_title}}</title>
<meta name="twitter:title" content="{{meta_title}}"/>
<meta property="og:title" content="{{meta_title}}"/>
{{else}}
<title>{{@site.title}}</title/>
<meta name="twitter:title" content="{{@site.title}}"/>
<meta property="og:title" content="{{@site.title}}"/>
{{/is}}
<meta name="HandheldFriendly" content="True"/>
<meta name="MobileOptimized" content="320"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=5"/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="twitter:card" content="summary"/>
<meta property="og:type" content="article"/>
{{! Styles and Scripts }}
<link rel="stylesheet" type="text/css" href="{{asset 'mno.css'}}"/>
<link rel="stylesheet" type="text/css" href="{{asset 'iconfont/iconfont.css'}}"/>
<script src="{{asset 'js/default.js'}}"></script>
{{! Ghost Head }}
{{ghost_head}}
</head>
<body class="{{body_class}}">
<span class="mobile btn-mobile-menu">
<i class="iconfont icon-list btn-mobile-menu__icon"></i>
<i class="iconfont icon-angle-up btn-mobile-close__icon hidden"></i>
</span>
{{#is "home" }}
{{> side-panel side_mode=false }}
{{else}}
{{> side-panel side_mode=true }}
<div class="content-wrapper">
<div class="content-wrapper__inner">
{{{body}}}
{{> footer}}
</div>
</div>
{{/is}}
{{! Ghost Footer }}
{{ghost_foot}}
</body>
</html>