This repository has been archived by the owner on Mar 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdefault.hbs
executable file
·56 lines (45 loc) · 2.22 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>{{meta_title}}</title>
<link rel="shortcut icon" type="image/png" href="{{asset "images/favicon.png"}}" />
<meta name="HandheldFriendly" content="True" />
<meta name="MobileOptimized" content="320" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<link rel="stylesheet" type="text/css" href="{{ asset "css/normalize.css" }}" />
<link rel="stylesheet" type="text/css" href="{{ asset "css/prism.css" }}" />
<link rel="stylesheet" type="text/css" href="{{ asset "css/main.css" }}" />
<script src="{{asset "js/shims.js"}}"></script>
{{#if pagination.next}}<link href="{{page_url pagination.next}}" rel="prefetch" />{{/if}}
{{ghost_head}}
</head>
<body class="{{body_class}}">
<div id="spinner">
<div class='uil-ripple-css' style='transform:scale(0.6);'><div></div><div></div></div>
</div>
<nav id="navigator">
<div class="menu-toggle">
<i class="fa fa-2x fa-fw fa-bars"></i>
</div>
{{navigation}}
<div class="site-title">
<a href="{{@blog.url}}">[{{#if @blog.logo}}<img class="logo-image" src="{{@blog.logo}}" />{{else}}<span>{{@blog.title}}</span>{{/if}}]</a>
</div>
{{> socials}}
</nav>
{{{body}}}
<footer class="site-footer">
<div class="inner">
{{!> footer-description}}
<section class="copyright">© {{date format="YYYY"}} <a href="/">{{@blog.title}}</a>. All rights reserved. | <a href="{{@blog.url}}/rss/" target="_blank">RSS</a></section>
<section>Contents are licensed under... <a href="http://creativecommons.org/licenses/by-nc/4.0/" target="_blank">Creative Commons</a>. Codes are <a href="http://opensource.org/licenses/MIT" target="_blank">MIT</a> :)</section>
<section class="poweredby">Proudly published with <a class="icon-ghost" href="http://ghost.org/"><span class="hidden">Ghost</span></a> and ❤</section>
{{ghost_foot}}
</div>
</footer>
<script type="text/javascript" src="{{asset "js/prism.js"}}"></script>
<script async type="text/javascript" src="{{asset "js/main.js"}}"></script>
</body>
</html>