This repository has been archived by the owner on May 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
default.hbs
executable file
·64 lines (63 loc) · 2.66 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
<!DOCTYPE html>
<html itemscope itemtype="http://schema.org/Blog" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<meta name="description" content="{{meta_description}}" />
<meta name="HandheldFriendly" content="True" />
<meta name="MobileOptimized" content="320" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{meta_title}}</title>
{{#post}}
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="{{{title}}}">
<meta name="twitter:description" content="{{excerpt}}">
<meta name="twitter:creator" content="@YOUR_TWITTER_HANDLE">
<meta name="twitter:image" content="{{@blog.logo}}">
<meta name="twitter:url" content="{{url absolute='true'}}">
<meta name="twitter:domain" content="{{@blog.url}}">
{{/post}}
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<link href="{{asset "css/main.css"}}" rel="stylesheet">
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="shortcut icon" href="/favicon.ico">
<link href="{{asset "css/prettify.css"}}" rel="stylesheet"></script>
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="{{asset "js/hover.zoom.js"}}"></script>
<script src="{{asset "js/hover.zoom.conf.js"}}"></script>
{{ghost_head}}
</head>
<body>
{{> header}}
<div id="ww">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 centered">
{{{body}}}
</div>
</div>
</div>
</div>
<div id="foot">
{{> footer}}
</div>
{{ghost_foot}}
<!-- Add Google Analytics here. -->
<script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js"></script>
<script src="{{asset "js/bootstrap.min.js"}}"></script>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'example'; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(function () {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
s.src = 'http://' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>
</body>
</html>