-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathdefault.hbs
52 lines (42 loc) · 2.11 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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<title>{{meta_title}}</title>
<meta name="description" content="{{meta_description}}">
<meta name="keywords" content="Ghost, blog, Ghost博客, Ghost主题, Ghost theme">
<meta name="HandheldFriendly" content="True" />
<meta name="format-detection" content="telephone=no">
<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.0">
<link type="image/png" rel="shortcut icon" href="{{asset "images/favicon.png"}}">
<link rel="stylesheet" href="http://cdn.bootcss.com/font-awesome/4.3.0/css/font-awesome.min.css">
{{! import styles }}
<link type="text/css" rel="stylesheet" href="{{asset "plugins/materialize/css/materialize.min.css"}}" />
<link type="text/css" rel="stylesheet" href="{{asset "plugins/prism/prism.css"}}" />
<link type="text/css" rel="stylesheet" href="{{asset "css/screen.css"}}" />
{{! Ghost outputs important style and meta data with this tag }}
{{ghost_head}}
</head>
<body>
{{> header}}
{{{body}}}
{{> footer}}
<!-- scroll top -->
<div class="top-scroll">
<a class="btn-floating btn-large waves-effect waves-light red accent-3" href="#topScroll">
<i class="fa fa-arrow-up"></i>
</a>
</div>
{{! Ghost outputs important scripts and data with this tag }}
{{ghost_foot}}
{{! import jQuery before materialize.min.js }}
<script type="text/javascript" src="http://cdn.bootcss.com/jquery/2.1.4/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="{{asset "plugins/jquery/jquery-2.1.4.min.js"}}"><\/script>')</script>
<script type="text/javascript" src="{{asset "plugins/materialize/js/materialize.min.js"}}"></script>
<script type="text/javascript" src="{{asset "plugins/prism/prism.js"}}"></script>
<script type="text/javascript" src="{{asset "js/index.js"}}"></script>
</body>
</html>