forked from KINGMJ/maple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.hbs
45 lines (45 loc) · 1.93 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
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="description" content="{{meta_description}}">
<title>{{meta_title}}</title>
<link href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdn.bootcss.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="{{asset 'css/markdown.css'}}">
<link rel="stylesheet" href="{{asset 'css/dataurl.css'}}">
<link rel="stylesheet" href="{{asset 'css/idea.css'}}">
<link rel="stylesheet" href="{{asset 'css/style.css'}}">
{{ghost_head}}
</head>
<body class="{{body_class}}">
{{{body}}}
{{ghost_foot}}
<script src="https://cdn.bootcss.com/jquery/3.2.0/jquery.min.js"></script>
<script src="https://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://cdn.bootcss.com/masonry/4.1.0/masonry.pkgd.min.js"></script>
<script src="https://cdn.bootcss.com/pace/1.0.2/pace.min.js"></script>
<script src="{{asset 'js/main.js'}}"></script>
{{#is 'post'}}
<script src="{{asset 'js/highlight.pack.js'}}"></script>
<script src="{{asset 'js/toc.js'}}"></script>
<script src="{{asset 'js/clipboard.min.js'}}"></script>
<script src="{{asset 'js/post.js'}}"></script>
<!--<script src="/src/assets/js/post.js"></script>-->
{{/is}}
<!--百度统计-->
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?395d772b7d7a08249ef132b15e166d0d";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</body>
</html>