-
Notifications
You must be signed in to change notification settings - Fork 1
/
default.hbs
81 lines (65 loc) · 3.26 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
81
<!DOCTYPE html>
<html>
<head>
{{! Document Settings }}
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
{{! Page Meta }}
<title>{{meta_title}}</title>
<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" />
{{! Styles }}
<link rel="stylesheet" type="text/css" href="/assets/css/normalize.css" />
<link rel="stylesheet" type="text/css" href="/assets/css/nprogress.css" />
<link rel="stylesheet" type="text/css" href="/assets/css/style.css" />
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,400,600,700,300&subset=latin,cyrillic-ext,latin-ext,cyrillic" />
<link rel="stylesheet" type="text/css" href="/assets/css/font-awesome.min.css"/>
{{! Ghost outputs important style and meta data with this tag }}
{{ghost_head}}
</head>
<body class="{{body_class}}">
<div id="wrapper">
<header class="site-header">
<div class="container">
<div class="site-title-wrapper">
<h1 class="site-title"><a class="js-ajax-link" title="{{@blog.title}}" href="{{@blog.url}}">{{@blog.title}}</a></h1>
<a class="button-square js-ajax-link js-show-index" href="{{@blog.url}}">
<i class="fa fa-bars fa-inverse"></i>
</a>
<a class="button-square" href="{{@blog.url}}/rss">
<i class="fa fa-rss fa-inverse"></i>
</a>
<a class="button-square" href="https://twitter.com/idjshq">
<i class="fa fa-twitter fa-inverse"></i>
</a>
<!--
<a class="button-square" href="https://github.com/idjs">
<i class="fa fa-github-alt fa-inverse"></i>
</a>
-->
</div>
</div>
</header>
<div id="ajax-container">
{{{body}}}
</div>
</div>
<footer class="footer">
<div class="container">
<div class="site-title-wrapper">
<h1 class="site-title"><a class="js-ajax-link" title="{{@blog.title}}" href="{{@blog.url}}">{{@blog.title}}</a></h1>
<!-- rm button-jump-top js-jump-top -->
<a class="button-square" href="#"><i class="fa fa-arrow-up fa-inverse"></i></a>
</div>
<p class="footer-copyright">© {{date format="YYYY"}} / Powered by <a href="http://tryghost.org">Ghost</a> / Built by <a href="http://idjs.org">IDJS</a></p>
</div>
</footer>
{{! Ghost outputs important scripts and data with this tag }}
{{ghost_foot}}
<script type="text/javascript" src="/assets/js/jquery.history.js"></script>
<script type="text/javascript" src="/assets/js/nprogress.js"></script>
<script type="text/javascript" src="/assets/js/scripts.js"></script>
</body>
</html>