This repository has been archived by the owner on Sep 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathdefault.hbs
84 lines (73 loc) · 3.39 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
<!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="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 "favicon.ico"}}">
{{! Styles'n'Scripts }}
<style type="text/css">body.no-flash{visibility: hidden;}</style>
<!--[if lte IE 8]><script src="{{asset "css/ie/html5shiv.js"}}"></script><![endif]-->
<script src="{{asset "js/jquery.min.js"}}"></script>
<script src="{{asset "js/skel.min.js"}}"></script>
<script src="{{asset "js/skel-layers.min.js"}}"></script>
<script src="{{asset "js/init.js"}}"></script>
<noscript>
<link rel="stylesheet" href="{{asset "css/skel.css"}}" />
<link rel="stylesheet" href="{{asset "css/style.css"}}" />
<link rel="stylesheet" href="{{asset "css/style-xlarge.css"}}" />
</noscript>
<!--[if lte IE 8]><link rel="stylesheet" href="{{asset "css/ie/v8.css"}}" /><![endif]-->
{{! Ghost outputs important style and meta data with this tag }}
{{ghost_head}}
</head>
<body class="{{body_class}} no-flash">
<div class="site-wrapper">
{{! Everything else gets inserted here }}
{{{body}}}
<footer id="footer">
<div class="container">
<div class="row">
<section class="4u 6u(medium) 12u$(small)">
<h3>Mail</h3>
<ul class="alt">
<li>
<a href="mailto:[email protected]" target="_blank">[email protected]</a>
</li>
</ul>
</section>
<section class="4u 6u$(medium) 12u$(small)">
<h3>Address</h3>
<ul class="alt">
<li>
Earth
</li>
</ul>
</section>
<section class="4u$ 12u$(medium) 12u$(small)">
<h3>Social</h3>
<ul class="icons">
<li><a href="#" class="icon rounded fa-twitter"><span class="label">Twitter</span></a></li>
<li><a href="#" class="icon rounded fa-facebook"><span class="label">Facebook</span></a></li>
<li><a href="#" class="icon rounded fa-pinterest"><span class="label">Pinterest</span></a></li>
<li><a href="#" class="icon rounded fa-google-plus"><span class="label">Google+</span></a></li>
<li><a href="#" class="icon rounded fa-linkedin"><span class="label">LinkedIn</span></a></li>
</ul>
</section>
</div>
<ul class="copyright">
<li><a href="{{@blog.url}}">{{@blog.title}}</a> © {{date format="YYYY"}}</li>
<li><a href="https://yourdomain.com">Your Name</a></li>
</ul>
</div>
</footer>
</div>
{{! Ghost outputs important scripts and data with this tag }}
{{ghost_foot}}
</body>
</html>