-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.hbs
More file actions
68 lines (59 loc) · 2.27 KB
/
Copy pathdefault.hbs
File metadata and controls
68 lines (59 loc) · 2.27 KB
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
67
68
<!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="HandheldFriendly" content="True"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
{{! Styles'n'Scripts }}
<link rel="stylesheet" type="text/css" href="{{asset "css/bootstrap.min.css"}}"/>
<link rel="stylesheet" type="text/css" href="{{asset "css/blog.css"}}"/>
<link href='http://fonts.googleapis.com/css?family=Droid+Sans' rel='stylesheet' type='text/css'>
<link type="text/css" rel="stylesheet" href="{{asset "css/prettify.css"}}"/>
{{! Ghost outputs important style and meta data with this tag }}
{{ghost_head}}
</head>
<body class="{{body_class}}">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 blog-title">
<h1><a href="{{@blog.url}}">{{@blog.title}}</a></h1>
<h4><code class="prettyprint">{{@blog.description}}</code></h4>
</div>
</div>
{{! Everything else gets inserted here }}
{{{body}}}
<footer class="blog-footer">
<ul class="list-inline">
<li><a href="https://twitter.com/jiimaho"
class="twitter-follow-button"
data-show-count="false"
data-size="large">Follow @jiimaho
</a>
</li>
<li><a href="http://github.com/fluentthinker/mindblow" title="GitHub"><img
src="{{asset "GitHub-Mark-32px.png"}}"/>Mindblow
Ghost theme</a></li>
</ul>
</footer>
</div>
{{! Ghost outputs important scripts and data with this tag }}
{{ghost_foot}}
<script>!function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0], p = /^http:/.test(d.location) ? 'http' : 'https';
if (!d.getElementById(id)) {
js = d.createElement(s);
js.id = id;
js.src = p + '://platform.twitter.com/widgets.js';
fjs.parentNode.insertBefore(js, fjs);
}
}(document, 'script', 'twitter-wjs');</script>
<script type="text/javascript" src="{{asset "js/bootstrap.min.js"}}"></script>
<script type="text/javascript" src="{{asset "js/prettify.js"}}"></script>
<script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js"></script>
</body>
</html>