forked from raivis-vitols/ghost-theme-willow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.hbs
32 lines (29 loc) · 888 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
{{>"head"}}
{{ghost_head}}
</head>
<body class="{{body_class}}">
<div id="site-wrapper" class="c-site-wrapper">
<div id="site-viewport" class="c-site-viewport">
{{>"sidebar"}}
<div id="site-content" class="c-site-content">
{{> "mobile-header"}}
{{{body}}}
</div>
</div>
</div>
<script src="{{asset "js/scripts.js"}}" data-no-instant></script>
{{ghost_foot}}
<!-- <script src="{{asset "js/instantclick.min.js"}}" data-no-instant></script>
<script type="text/javascript" data-no-instant>
InstantClick.on('change', function() {
if(typeof window.ga === 'function') {
ga('send', 'pageview', location.pathname + location.search);
}
});
InstantClick.init();
</script> -->
</body>
</html>