-
Notifications
You must be signed in to change notification settings - Fork 37
/
default.hbs
executable file
·102 lines (91 loc) · 5.75 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!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="HandheldFriendly" content="True" />
<meta name="MobileOptimized" content="320" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
{{! Styles'n'Scripts }}
<link rel="stylesheet" type="text/css" href="{{asset "css/bastard.min.css"}}" />
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Merriweather:300,700,700italic,300italic|Open+Sans:700,400" />
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
{{! Touch icons and favicon }}
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{asset "/images/apple-touch-icon-144x144-precomposed.png"}}" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="{{asset "/images/apple-touch-icon-114x114-precomposed.png"}}" />
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="{{asset "/images/apple-touch-icon-72x72-precomposed.png"}}" />
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="{{asset "/images/apple-touch-icon-57x57-precomposed.png"}}" />
<link rel="apple-touch-icon-precomposed" href="{{asset "/images/apple-touch-icon-precomposed.png"}}" />
<link rel="apple-touch-icon" href="{{asset "/images/apple-touch-icon.png"}}" />
<link rel="icon" type="image/x-icon" href="{{asset "/images/favicon.ico"}}" />
<link rel="shortcut icon" type="image/x-icon" href="{{asset "/images/favicon.ico"}}" />
<!-- For non-Retina iPhone, iPod Touch, and Android 2.1+ devices: -->
<link rel="apple-touch-icon" sizes="57x57" href="{{asset "/images/apple-touch-icon-57x57.png"}}" />
<link rel="apple-touch-icon" sizes="60x60" href="{{asset "/images/apple-touch-icon-60x60.png"}}" />
<!-- For first- and second-generation iPad: -->
<link rel="apple-touch-icon" sizes="72x72" href="{{asset "/images/apple-touch-icon-72x72.png"}}" />
<link rel="apple-touch-icon" sizes="76x76" href="{{asset "/images/apple-touch-icon-76x76.png"}}" />
<!-- For iPhone with high-resolution Retina display running iOS ≤ 6: -->
<link rel="apple-touch-icon" sizes="114x114" href="{{asset "/images/apple-touch-icon-114x114.png"}}" />
<!-- For iPhone with high-resolution Retina display running iOS ≥ 7: -->
<link rel="apple-touch-icon" sizes="120x120" href="{{asset "/images/apple-touch-icon-120x120.png"}}" />
<!-- For iPad with high-resolution Retina display running iOS ≤ 6: -->
<link rel="apple-touch-icon" sizes="144x144" href="{{asset "/images/apple-touch-icon-144x144.png"}}" />
<!-- For iPad with high-resolution Retina display running iOS ≥ 7: -->
<link rel="apple-touch-icon" sizes="152x152" href="{{asset "/images/apple-touch-icon-152x152.png"}}" />
<link rel="apple-touch-icon" sizes="180x180" href="{{asset "/images/apple-touch-icon-180x180.png"}}" />
<link rel="icon" type="image/png" href="{{asset "/images/favicon-32x32.png"}}" sizes="32x32">
<link rel="icon" type="image/png" href="{{asset "/images/favicon-194x194.png"}}" sizes="194x194">
<link rel="icon" type="image/png" href="{{asset "/images/favicon-96x96.png"}}" sizes="96x96">
<link rel="icon" type="image/png" href="{{asset "/images/android-chrome-192x192.png"}}" sizes="192x192">
<link rel="icon" type="image/png" href="{{asset "/images/favicon-16x16.png"}}" sizes="16x16">
<link rel="manifest" href="{{asset "/images/manifest.json"}}">
<link rel="shortcut icon" href="{{asset "/images/favicon.ico"}}">
<meta name="msapplication-TileColor" content="#000000">
<meta name="msapplication-TileImage" content="{{asset "/images/mstile-144x144.png"}}">
<meta name="theme-color" content="#000000">
{{! Ghost outputs important style and meta data with this tag }}
{{ghost_head}}
</head>
<body class="{{body_class}}">
<!-- Side Menu -->
<!--Gravatar link, update avatar image url to use your own; s = size in pixels -->
{{> gravatar}}
<!-- /Gravatar link -->
<div id="slidemenu-wrapper">
{{> slidemenu}}
</div>
<!-- /Side Menu -->
{{! Everything else gets inserted here }}
{{{body}}}
<footer class="site-footer clearfix">
<a class="subscribe icon-feed" href="{{@blog.url}}/rss/"><span class="tooltip">Subscribe!</span></a>
<div class="container">
<div class="row">
<div class="col-md-12">
{{! Social Links }}
{{> social }}
</div>
</div>
</div>
<div class="container">
<div class="row">
<section class="copyright">All content copyright <a href="{{@blog.url}}/">{{@blog.title}}</a> © {{date format="YYYY"}} • All rights reserved.</section>
<section class="poweredby">Proudly published with <a class="icon-ghost" href="http://ghost.org">Ghost</a> and the <a href="http://github.com/karloespiritu/Bastard"><strong>Bastard</strong></a> Theme</section>
</div>
<div class="row">
<a id="scroll-to-top" class="pull-right" href="#top"><i class="fa fa-chevron-circle-up fa-2x"></i></a>
</div>
</div>
</footer>
{{!-- jQuery needs to come before `{{ghost_foot}}` so that jQuery can be used in code injection --}}
<script type="text/javascript" src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
{{! Ghost outputs important scripts and data with this tag }}
{{ghost_foot}}
{{! The main JavaScript file for Bastard }}
<script type="text/javascript" src="{{asset "js/scripts.min.js"}}"></script>
</body>
</html>