forked from roryg/ghostwriter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.hbs
74 lines (56 loc) · 2.97 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
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
{{! Document Settings }}
<meta http-equiv="Content-Type" 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}}">
<meta name="author" content="Aestik">
<meta name="viewport" content="width=device-width, initial-scale=1.0,maximum-scale=1">
{{! Styles }}
<link href="http://fonts.googleapis.com/css?family=Maven+Pro:400,500,700,900" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700&subset=latin,cyrillic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Noto+Sans:400,700,400italic,700italic&subset=cyrillic,latin' rel='stylesheet' type='text/css'>
<link href="/assets/css/bootstrap.css" rel="stylesheet">
<link href="/assets/css/fonticon.css" rel="stylesheet">
<link href="/assets/css/nprogress.css" rel="stylesheet">
<link href="/assets/css/style.css" rel="stylesheet">
<link href="/skins/skin-brown.css">
<!-- <HTML5>shim, for IE6-8 support of HTML5 elements </HTML5> -->
<!--[if lt IE 9]>
<script src="/assets/js/vendor/html5shiv.js"></script>
<![endif]-->
{{! Ghost outputs important style and meta data with this tag }}
{{ghost_head}}
</head>
<body class="suave {{body_class}}">
<!--[if lt IE 8]><p class="chromeframe">You are using an<strong>outdated</strong>browser. Please <a href="http://browsehappy.com/">upgrade your browser</a>or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a>to improve your experience.</p><![endif]-->
{{!-- Header & Navigations --}}
<header role="banner">
{{!-- Logo & Nav --}}
{{> nav}}
</header>
{{! Everything else gets inserted here }}
{{{body}}}
{{! Ghost outputs important scripts and data with this tag }}
{{ghost_foot}}
{{!-- jquery --}}
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
{{!-- jquery ui --}}
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
{{!-- jquery cookie --}}
<script src="/assets/js/vendor/jquery.cookie.js"></script>
{{!-- jquery FitVids --}}
<script src="/assets/js/vendor/jquery.fitvids.js"></script>
{{!-- NProgress --}}
<script src="/assets/js/vendor/nprogress.js"></script>
{{!-- bootstrap --}}
<script src="/assets/js/vendor/bootstrap.min.js"></script>
{{!-- Respond js Polyfill --}}
<script src="/assets/js/vendor/respond.min.js"></script>
{{!-- script --}}
<script src="/assets/js/script.js"></script>
</body>
</html>