-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathdefault.hbs
67 lines (55 loc) · 2.15 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>{{meta_title}}</title>
<meta name="description" content="{{meta_description}}" />
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="{{asset "favicon.ico"}}">
<link rel="stylesheet" type="text/css" href="{{asset "vendor/vendor.css"}}" />
<link rel="stylesheet" type="text/css" href="{{asset "css/style.css"}}" />
{{ghost_head}}
</head>
<body class="{{body_class}}">
{{navigation}}
{{{body}}}
<div class="modal fade" tabindex="-1" role="dialog" id="search-results-container">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title">Search results</h4>
</div>
<div class="modal-body">
Searched for <strong id="search-term"></strong>
<hr>
<section id="loading-spinner" class="text-center"><i class="fa fa-spinner fa-spin fa-2x"></i></section>
<section id="search-results" class="search-results"></section>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<footer class="site-footer clearfix container text-muted">
<hr>
<div class="row">
<div class="col-md-6">
<a href="#top" data-scroll="true">
<i class="fa fa-arrow-up"></i> Back to top
</a>
</div>
<div class="col-md-6 text-right">
<p><strong>{{@blog.title}}</strong> © {{date format="YYYY"}}</p>
<p><small>Theme by <a href="http://nehalist.io" target="_blank">nehalist.io</a></small></p>
</div>
</div>
</footer>
<script type="text/javascript" src="{{ asset "vendor/vendor.js" }}"></script>
{{ghost_foot}}
<script type="text/javascript" src="{{asset "js/index.js"}}"></script>
</body>
</html>