This repository has been archived by the owner on May 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdefault.hbs
80 lines (64 loc) · 3.41 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<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="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="{{asset "img/favicon.ico"}}">
<link rel="stylesheet" href="{{asset "css/bootstrap.css"}}">
<link rel="stylesheet" href="{{asset "css/layout.css"}}">
<link rel="stylesheet" href="{{asset "css/syntax-highlighting.css"}}">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
{{ghost_head}}
</head>
<body>
<div role="main" class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-10 col-lg-10 col-xs-offset-0 col-sm-offset-0 col-md-offset-1 col-lg-offset-1">
<div class="indentation-container"><span class="control inline">{</span><div class="row indentation-content">
<div class="indentation indentation-toggle">
<div class="indentation-line"></div>
</div>
<div class="col-xs-12 col-sm-11 col-md-11 col-lg-11 col-xs-offset-0 col-sm-offset-1 col-md-offset-1 col-lg-offset-1 hash">
{{{body}}}
<div class="array-item indentation-container">
<span class="attribute">"follow"</span><span class="control inline">:</span>
<span class="control inline">[</span><div class="row indentation-content">
<div class="indentation indentation-toggle">
<div class="indentation-line"></div>
</div>
<div class="col-xs-12 col-sm-11 col-md-11 col-lg-11 col-xs-offset-0 col-sm-offset-1 col-md-offset-1 col-lg-offset-1">
<div>
<span class="value">"<a href="{{@blog.url}}/rss/" target="_blank">rss</a>"</span><span class="control inline">,</span>
</div>
<div>
<span class="value">"<a href="https://github.com/secondimpression" target="_blank">github</a>"</span><span class="control inline">,</span>
</div>
<div>
<span class="value">"<a href="https://twitter.com/2ndimp_" target="_blank">twitter</a>"</span>
</div>
</div>
</div><span class="indentation-ellipsis indentation-toggle">...</span><span class="control inline">]</span><span class="control inline">,</span>
</div>
<div>
<span class="attribute">"copyright"</span><span class="control inline">:</span>
<span class="value">"<a href="{{@blog.url}}">{{@blog.title}}</a> © {{date format="YYYY"}}"</span>
</div>
</div>
</div><span class="indentation-ellipsis indentation-toggle">...</span><span class="control inline">}</span>
</div>
</div>
</div>
</div>
<script src="{{asset "js/jquery.js"}}"></script>
<script src="{{asset "js/bootstrap.js"}}"></script>
<script src="{{asset "js/layout.js"}}"></script>
{{ghost_foot}}
</body>
</html>