-
Notifications
You must be signed in to change notification settings - Fork 31
/
default.hbs
52 lines (44 loc) · 2.43 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
<!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>
<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" />
<script src="//polyfill.io/"></script>
<link rel="stylesheet" src="//polyfill.io/normalize.css"/>
<link rel="stylesheet" type="text/css" href="/assets/css/style.css" />
<link href='http://fonts.googleapis.com/css?family=Signika:300,600' rel='stylesheet' type='text/css'>
{{ghost_head}}
</head>
<body class="{{body_class}}">
<header id="site-head" {{#if @blog.cover}}style="background-image: url({{@blog.cover}})"{{/if}}>
<div class="vertical">
<a href="/" title="{{@blog.title}} - {{@blog.description}}">
<div id="site-head-content" class="inner">
<h1 class="blog-title{{#if @blog.logo}} image-logo{{/if}}"{{#if @blog.logo}}
style="background-image: url('{{@blog.logo}}')"{{/if}}>
{{@blog.title}}
</h1>
<h2 class="blog-description">{{@blog.description}}</h2>
</div>
</a>
</div>
</header>
{{{body}}}
<footer class="site-footer">
<div class="get-connected"><a class="icon-twitter-circled" href="https://twitter.com/viktorbezdek" target="_blank"> </a> <a class="icon-github-circled" href="https://github.com/viktorbezdek/" target="_blank"> </a> <a class="icon-linkedin-circled" href="http://linkedin.com/in/viktorbezdek" target="_blank"> </a></div>
<div class="inner">
<section class="copyright">Copyright © 2013 <a href="/">{{@blog.title}}</a>. All rights reserved.</section>
<section class="poweredby">Proudly powered by <a href="http://www.ghost.org" target="_blank">GHOST</a>. Theme <a href="https://github.com/viktorbezdek/ghostentista">ghostentista</a> by <a href="http://www.viktorbezdek.cz">Viktor Bezdek</a>.</section>
</div>
</footer>
{{ghost_foot}}
<script src="/assets/js/jquery.history.js"></script>
<script src="/assets/js/prism.js"></script>
<script src="/assets/js/index.js"></script>
</body>
</html>