forked from adamcooke/ghost-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.hbs
62 lines (52 loc) · 2.33 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
<!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="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" href="/assets/css/screen.css" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="/assets/js/index.js"></script>
<script type="text/javascript" src="//use.typekit.net/vym1trm.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
{{ghost_head}}
</head>
<body class="{{body_class}}">
<header class='main'>
<h1><a href='/'>Nick Molo</a></h1>
<p class='title'>Hardware designer</p>
<p class="social">
<a href='https://github.com/nickmolo'><i class='icon-github'></i><span>Check out my code on <b>GitHub</b></span></a>
<a href='http://www.linkedin.com/in/nickmolo/'><i class='icon-linkedin'></i><span>Take a look at my <b>Linked In</b> profile</span></a>
<a href='https://twitter.com/TheNickMolo'><i class='icon-twitter'></i><span>My twitter profile</span></a>
</p>
</header>
<nav class='main'>
<div class='inner'>
<div class='group pages'>
<ul class='nav'>
<li><i class='icon-blog'></i><a class='blog' href='/'>home</a></li>
<li><i class='icon-about'></i><a class='about' href='/will-froese/'>about</a></li>
<li><i class='icon-archives'></i><a class='archives' href='/blog-archives'>archives</li>
<li><i class='icon-projects'></i><a class='hire' href='/hire-me'>hire me</a></li>
</ul>
</div>
</div>
</nav>
<section class='content'>
{{{body}}}
</section>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-48618562-1']);
_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>
</body>
</html>