-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathdefault.hbs
84 lines (59 loc) · 3.37 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
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<!--[if lt IE 7]><html lang="en-US" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if (IE 7)&!(IEMobile)]><html lang="en-US" class="no-js lt-ie9 lt-ie8"><![endif]-->
<!--[if (IE 8)&!(IEMobile)]><html lang="en-US" class="no-js lt-ie9"><![endif]-->
<!--[if gt IE 8]><!-->
<html lang="en-US" class="js flexbox webgl no-touch geolocation hashchange history websockets rgba hsla multiplebgs backgroundsize borderimage textshadow opacity cssanimations csscolumns cssgradients cssreflections csstransforms csstransforms3d csstransitions fontface generatedcontent video audio localstorage applicationcache svg svgclippaths mediaqueries no-regions no-supports" style="">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>{{meta_title}}</title>
<meta name="description" content="{{meta_description}}">
<!-- mobile meta -->
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Announce the rss feed -->
<link rel="alternate" type="application/rss+xml" title="{{@blog.title}} » Feed" href="{{@blog.url}}/rss">
<!-- Add Modernizr for better IE8 Support -->
<script type="text/javascript" src="{{asset '/js/libs/modernizr.custom.min.js'}}"></script>
<!-- Include the main stylesheet-->
<link rel="stylesheet" id="linen-stylesheet-css" href="{{asset 'css/style.css'}}" type="text/css" media="all" />
<!--[if lt IE 9]>
<link rel='stylesheet' id='linen-ie-only-css' href="{{asset 'css/ie.css'}}" type='text/css' media='all' />
<![endif]-->
{{! Ghost outputs important style and meta data with this tag }}
{{ghost_head}}
<!-- Include custom CSS -->
<link rel="stylesheet" id="custom-stylesheet-css" href="{{asset 'css/custom.css'}}" type="text/css" media="all">
</head>
<body class="{{body_class}}">
<div id="container">
{{! Output the content of the header partial template }}
{{> header}}
<section id="content">
{{! The 'inner' divs provide a nice wrapper for content to help with fluidity and responsiveness }}
<div id="inner-content" class="wrap clearfix">
{{! The main section uses eight columns in the grid framework }}
<main id="main" class="eightcol first clearfix" role="main">
{{{body}}}
</main> <!-- end #main -->
{{! The sidebar fills in the remaining four columns }}
<aside id="sidebar-main" class="sidebar fourcol clearfix" role="complementary">
{{> sidebar}}
</aside>
</div> <!-- end #inner-content -->
</section> <!-- end #content -->
<footer class="footer" role="contentinfo">
<div id="inner-footer" class="wrap clearfix">
<p class="source-org copyright">© 2013 <a href="http://themespectre.com">Theme Spectre, LLC.</a></p>
</div> <!-- end #inner-footer -->
</footer> <!-- end footer -->
</div> <!-- end #container -->
<!-- The Ghost footer helper will insert some shared javascript libraries and files required by plugins -->
{{ghost_foot}}
<!-- Custom Scripts -->
<script type="text/javascript" src="{{asset '/js/scripts.js'}}"></script>
</body>
</html>