-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.hbs
40 lines (37 loc) · 1.83 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="{{ meta_description }}">
<title>{{ meta_title }}</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,700|Raleway:100" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.6.0/styles/default.min.css">
<link rel="stylesheet" href="{{asset "css/styles.css"}}">
<link rel="icon" type="image/x-icon" href="{{ asset "favicon.ico"}}">
{{ ghost_head }}
</head>
<body>
<header id="top_header" class="clearfix">
<div class="wrapper">
<a href="{{@blog.url}}"><h1 class="logo">{{@blog.title}}</h1></a>
{{ navigation }}
</div>
</header>
{{{ body }}}
<footer>
<span id="legal">© {{@blog.title}} {{ date format="YYYY" }}</span>
</footer>
{{ ghost_foot }}
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
{{!-- Highlight JS for code syntax highlighting --}}
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.6.0/highlight.min.js"></script>
{{! FitVids for responsive Videos }}
<script type="text/javascript" src="{{asset "js/jquery.fitvids.js"}}"></script>
<script type="text/javascript" src="{{asset "js/main.js"}}"></script>
<script> hljs.initHighlightingOnLoad();</script>
</body>
</html>