-
Notifications
You must be signed in to change notification settings - Fork 2
/
default.hbs
executable file
·74 lines (57 loc) · 2.65 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
<!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="HandheldFriendly" content="True" />
<meta name="MobileOptimized" content="320" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="{{asset "css/highlight/styles/railscasts.css"}}">
<script type="text/javascript" src="{{asset "css/highlight/highlight.pack.js"}}"></script>
<link rel="stylesheet" type="text/css" href="{{asset "css/screen.css"}}" />
<link href='//fonts.googleapis.com/css?family=Roboto:400,300,300italic,400italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>
<link rel="shortcut icon" href="{{asset "img/favicon.ico"}}">
{{! Ghost outputs important style and meta data with this tag }}
{{ghost_head}}
</head>
<body class="{{body_class}}">
<div id="content">
<!--NOTE(eugenek): Left side bar follows -->
<div id="content-left">
<div class="vertical">
<div class="side-bar">
<div class="blog-title-wrap">
{{#if @blog.logo}}<a id="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="Blog Logo" /></a>{{/if}}
<h1 class="blog-title blog-title-text"><a class="blog-title-link" href="{{@blog.url}}">{{@blog.title}}</a></h1>
</div>
<div class="blog-description-wrap">
<h2 class="blog-description">{{@blog.description}}</h2>
</div>
{{navigation}}
<div class="latest-10-posts-wrap">
<h1 class="latest-10-posts-title">Latest Posts</h1>
</div>
{{> latest_10_posts}}
</div>
</div>
</div>
{{! Everything else gets inserted here }}
{{{body}}}
<!--NOTE(eugenek): Site-wide Footer -->
<footer class="site-footer">
<a class="subscribe icon-feed" href="{{@blog.url}}/rss/"><span class="tooltip">Subscribe!</span></a>
<div class="">
<section class="copyright">All content copyright <a href="/">{{@blog.title}}</a> © 2015 • All rights reserved.</section>
<section class="poweredby">
<a href="https://github.com/eugenekolo/cozy-youth-theme">Cozy Youth</a> forked from Kolotheme by
<a href="http://twitter.com/@eugenekolo">@eugenekolo</a></section>
</div>
</footer>
{{! Ghost outputs important scripts and data with this tag }}
{{ghost_foot}}
{{! The main JavaScript file for Casper }}
<script type="text/javascript" src="{{asset "js/index.js"}}"></script>
</div>
</body>
</html>