forked from kabukky/promenade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.hbs
executable file
·63 lines (56 loc) · 3.4 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
<!DOCTYPE html>
<html>
<head>
{{! Document Settings }}
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
{{! Page Meta }}
<title>{{meta_title}}</title>
<meta name="description" content="{{meta_description}}" />
{{! Styles }}
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Merriweather:300,700,700italic,300italic|Open+Sans:700,400" />
<link rel="stylesheet" type="text/css" href="/assets/css/normalize.css" />
<link rel="stylesheet" type="text/css" href="/assets/css/style.css" />
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
{{! Responsive Meta Tags }}
<meta name="HandheldFriendly" content="True" />
<meta name="MobileOptimized" content="320" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
{{ghost_head}}
</head>
<body class="{{body_class}}">
<header class="sidebar" {{#if @blog.cover}}style="background-image: url({{@blog.cover}})"{{/if}}>
<div class="sidebar_inner">
<div class="sidebar_header">
<div class="sidebar_userimage" {{#if @blog.logo}}style="background-image: url({{@blog.logo}})"{{/if}}></div>
<h1 class="sidebar_title">{{@blog.title}}</h1>
</div>
<div class="sidebar_symbols">
<a href="http://www.github.com" target="_blank" title="GitHub"><i class="fa fa-github-square fa-lg sidebar_symbol github_symbol"></i></a>
<a href="http://www.twitter.com" target="_blank" title="Twitter"><i class="fa fa-twitter-square fa-lg sidebar_symbol twitter_symbol"></i></a>
<a href="http://www.linkedin.com" target="_blank" title="LinkedIn"><i class="fa fa-linkedin-square fa-lg sidebar_symbol linkedin_symbol"></i></a>
<a href="http://www.youtube.com" target="_blank" title="YouTube"><i class="fa fa-youtube-square fa-lg sidebar_symbol youtube_symbol"></i></a>
<a href="http://www.xing.com" target="_blank" title="Xing"><i class="fa fa-xing-square fa-lg sidebar_symbol xing_symbol"></i></a>
<a href="http://www.flickr.com" target="_blank" title="Flickr"><i class="fa fa-flickr fa-lg sidebar_symbol flickr_symbol"></i></a>
<a href="/rss/" target="_blank" title="Subscribe"><i class="fa fa-rss-square fa-lg sidebar_symbol rss_symbol"></i></a>
</div>
<h2 class="sidebar_link"><a href="/">Blog</a></h2>
<h2 class="sidebar_link"><a href="/about">About</a></h2>
<h2 class="sidebar_link"><a href="/projects">Projects</a></h2>
</div>
</header>
{{{body}}}
{{ghost_foot}}
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = ''; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(function () {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
s.src = '//' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>
</body>
</html>