-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdefault.hbs
More file actions
executable file
·99 lines (86 loc) · 4.75 KB
/
Copy pathdefault.hbs
File metadata and controls
executable file
·99 lines (86 loc) · 4.75 KB
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
<!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>{{#if post.title}} {{meta_title}} | {{@blog.title}}{{else}}{{meta_title}}{{/if}}</title>
{{! OpenGraph Informations}}
{{#if post}}
{{#post}}
<meta property="og:type" content="article" />
<meta property="og:title" content="{{title}}" />
<meta property="og:description" content="{{excerpt}}" />
{{/post}}
{{else}}
<meta property="og:title" content="{{meta_title}}">
{{/if}}
<link rel="shortcut icon" href="{{@blog.logo}}" />
<meta name="HandheldFriendly" content="True" />
<meta name="MobileOptimized" content="320" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
{{! Styles'n'Scripts }}
<!--<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.3.0/pure-min.css">/-->
<link rel="stylesheet" href="{{asset "css/style.css"}}">
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic|Open+Sans:700,400" />
{{! Ghost outputs important style and meta data with this tag }}
{{ghost_head}}
</head>
<body itemscope itemtype="http://schema.org/WebPage" class="{{body_class}}">
<div class="pure-g-r" id="layout">
{{! The big featured header on the homepage, with the site logo and description }}
<div class="sidebar pure-u">
<header class="header">
<hgroup>
{{#if @blog.logo}}<a id="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="Blog Logo" /></a>{{/if}}
<h1 itemprop="name" class="blog-title"><a href="{{@blog.url}}">{{@blog.title}}</a></h1>
<h2 itemprop="description" class="blog-description">{{@blog.description}}</h2>
</hgroup>
<nav class="nav">
<ul class="social-list">
{{! In the following six lines edit the links between the quotations marks close to href= with the appropriate content }}
<li class="social-item"><a class="subscribe icon-twitter" href="http://www.twitter.com/..." target="_blank"></a></li>
<li class="social-item"><a class="subscribe icon-facebook" href="http://www.facebook.com/..." target="_blank"></a></li>
<li class="social-item"><a class="subscribe icon-google-plus" href="http://plus.google.com/..." target="_blank" rel="publisher"></a></li>
<li class="social-item"><a class="subscribe icon-github" href="http://www.github.com/..." target="_blank"></a></li>
<li class="social-item"> </li>
<li class="social-item"><a class="subscribe icon-feed" href="{{@blog.url}}/rss/" target="_blank"></a></li>
</ul>
</nav>
</header>
<footer class="footer">
<section class="copyright">© 2013 <a itemscope="copyrightHolder" href="{{@blog.url}}">{{@blog.title}}</a></section>
<section class="poweredby">Proudly published with <a class="icon-ghost" href="http://tryghost.org" target="_blank">Ghost</a></section>
<section class="theme"><a href="https://github.com/mseri/purity" target="_blank">Purity</a> is built with <a href="http://purecss.io" target="_blank">PureCSS</a></section>
</footer>
</div>
<div class="pure-u-1 container">
{{! Everything else gets inserted here }}
{{{body}}}
</div>
</div>
{{! Ghost outputs important scripts and data with this tag }}
{{ghost_foot}}
<!-- REMOVE THIS LINE TO ENABLE MATHJAX
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}
});
</script>
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
REMOVE THIS LINE TO ENABLE MATHJAX -->
<!-- REMOVE THIS LINE TO ENABLE GOOGLE ANALYTICS
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'REPLACE_THIS_TEXT_WITH_THE_ACCOUNT_NUMBER_GIVEN_BY_GOOGLE']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
REMOVE THIS LINE TO ENABLE GOOGLE ANALYTICS -->
</body>
</html>