-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathdefault.hbs
59 lines (50 loc) · 2.36 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<link href="//gmpg.org/xfn/11" rel="profile">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="HandheldFriendly" content="True" />
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<!-- Enable responsiveness on mobile devices-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<title>{{meta_title}}</title>
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="{{asset 'css/prism.css'}}">
<link rel="stylesheet" type="text/css" href="{{asset 'css/base.css'}}">
<link rel="stylesheet" type="text/css" href="{{asset 'css/icon.css'}}">
<link rel="stylesheet" type="text/css" href="{{asset 'css/syntax.css'}}">
<link rel="stylesheet" type="text/css" href="{{asset 'css/oscar.css'}}">
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Lato:100,300,300italic">
<!-- Icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{asset "apple-touch-icon-precomposed.png"}}">
<link rel="shortcut icon" href="{{asset "favicon.ico"}}">
{{! Ghost outputs important style and meta data with this tag }}
{{ghost_head}}
</head>
<body class="{{body_class}}">
<div class="masthead">
<div class="container">
<h2 class="masthead-title">
<a href="{{@site.url}}" title="Home">{{@site.title}}</a>
<small>{{@site.description}}</small>
</h2>
</div>
{{navigation}}
</div>
<div class="container tag-nav"></div>
<div class="container content">
{{{body}}}
</div>
<footer>
Made with 🖤 by <a href="https://oscarmorrison.com?utm_source=blog" target="_blank">Oscar</a>
<span> | </span>
Published with <a href="https://ghost.org" target="_blank">Ghost</a>
</footer>
<script type="text/javascript" data-cfasync="false" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.3/jquery.min.js"></script>
<script type="text/javascript" src="{{asset 'js/gallery.js'}}"></script>
<script type="text/javascript" src="{{asset 'js/prism.js'}}"></script>
{{! Ghost outputs important scripts and data with this tag }}
{{ghost_foot}}
<script type="text/javascript" src="{{asset 'js/oscar.js'}}" data-cfasync="false"></script>
</body>
</html>