-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdefault.hbs
43 lines (36 loc) · 1.51 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="HandheldFriendly" content="True" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="{{meta_description}}" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{meta_title}}</title>
<link rel="stylesheet" type="text/css" href="{{asset "css/bootstrap.min.css"}}">
<link rel="stylesheet" type="text/css" href="{{asset "css/font-awesome.min.css"}}">
<link rel="stylesheet" type="text/css" href="{{asset "css/colorbox.css"}}" />
<link rel="stylesheet" type="text/css" href="{{asset "css/clui.css"}}" />
{{! Ghost outputs important style and meta data with this tag }}
{{ghost_head}}
</head>
<body class="{{body_class}}">
{{! Everything else gets inserted here }}
{{{body}}}
<footer class="container">
<div class="row">
<div class="col-xs-12">
<section>© <a href="/">{{@blog.title}}</a> 2014</section>
<section>powered by <a class="icon-ghost" href="http://ghost.org"></a></section>
</div>
</div>
</footer>
{{! Ghost outputs important scripts and data with this tag }}
{{ghost_foot}}
{{! The main JavaScript file for CLUI }}
<script type="text/javascript" src="{{asset "js/bootstrap.min.js"}}"></script>
<script type="text/javascript" src="{{asset "js/jquery.jscroll.min.js"}}"></script>
<script type="text/javascript" src="{{asset "js/jquery.colorbox-min.js"}}"></script>
<script type="text/javascript" src="{{asset "js/clui.js"}}"></script>
</body>
</html>