-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.hbs
More file actions
executable file
·90 lines (66 loc) · 2.54 KB
/
default.hbs
File metadata and controls
executable file
·90 lines (66 loc) · 2.54 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
<!DOCTYPE html>
<html>
<head>
{{! Document Settings }}
{{! Page Meta }}
<meta charset="UTF-8" />
<title>{{meta_title}}</title>
<meta name="description" content="{{meta_description}}" />
<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 href="//fonts.googleapis.com/css?family=Noto+Serif:400,700,400italic,700italic%7CLato:900" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="{{asset "css/screen.css"}}" />
<!--[if (lt IE 9) & (!IEMobile)]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<link rel="stylesheet" id="lt-ie9-css" href="{{asset "css/ie.css"}}" type="text/css" media="screen" />
<![endif]-->
{{! Ghost outputs important style and meta data with this tag }}
{{>analytics }}
{{ghost_head}}
</head>
<body class="{{body_class}}">
<div class="wrap animated fadeIn">
<header class="header">
<div class="logo">
{{#if @blog.logo}}
<a id="blog-logo" href="{{@blog.url}}"><img id="logo" src="{{@blog.logo}}" alt="{{@blog.title}} Logo" /></a>
{{else}}
<div class="blog-title"><a href="{{@blog.url}}">{{@blog.title}}</a></div>
<div class="blog-tagline"><a href="{{@blog.description}}">{{@blog.description}}</a></div>
{{/if}}
</div>
<a id="menu-control" href="#nav" title="Menu">Menu</a>
</header>
{{>navigation }}
{{! Everything else gets inserted here }}
{{{body}}}
<footer class="footer">
<div class="wrapper">
{{>footer }}
</div>
</footer>
</div>{{! wrap close }}
{{! Ghost outputs important scripts and data with this tag }}
{{ghost_foot}}
{{! The main JavaScript files }}
<script src="{{asset "js/plugins.min.js"}}"></script>
<script src="{{asset "js/scripts.min.js"}}"></script>
<script src="//ajax.googleapis.com/ajax/libs/webfont/1/webfont.js"></script>
<script>
jQuery(function() {
WebFont.load({
custom: {
families: ['LeagueGothicRegular'], // font-family name
urls : ['{{@blog.url}}/assets/webfonts/leaguegothic.css'] // URL to css
},
active: function() {
jQuery('.slab h1').slabText({ "viewportBreakpoint":300 });
}
});
});
var siteUrl = '{{@blog.url}}';
</script>
</body>
</html>