This repository has been archived by the owner on Jan 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
default.hbs
executable file
·85 lines (78 loc) · 2.51 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
85
<!DOCTYPE html>
<html>
<head>
{{! Document Settings }}
<meta http-equiv="Content-Type" content="text/html" 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="HandheldFriendly" content="True" />
<meta name="MobileOptimized" content="320" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
{{! Styles'n'Scripts }}
<link rel="stylesheet" type="text/css" href="/assets/css/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="/assets/css/bootstrap-theme.css" />
<link rel="stylesheet" type="text/css" href="/assets/css/bootstrap-glyphicons.css"/>
<link rel="stylesheet" type="text/css" href="/assets/css/adds.css" />
{{! insert font link here
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic|Open+Sans:700,400" />
}}
{{! Ghost outputs important style and meta data with this tag }}
{{ghost_head}}
</head>
<body class="{{body_class}}">
<header>
{{> navigation}}
{{#if posts}}
{{> slider}}
<a class="aftercarousel" name="aftercarousel"></a>
{{/if}}
</header>
<main class="content" role="main">
<div class="container">
<div class="row">
{{#if posts}}
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
{{{body}}}
</div>
{{else}}
<div class="col-lg-10 col-md-8 col-sm-12 col-xs-12">
{{{body}}}
</div>
<div class="col-lg-2 col-md-4 col-sm-12 col-xs-12">
{{> rightside}}
</div>
{{/if}}
</div>
</div>
</main>
<section>
{{> moredetails}}
</section>
{{#if pagination}}
<section>
<div class="container">
<div class="row">
<div class="col-xs-12">
{{{pagination}}}
</div>
</div>
</div>
</section>
{{/if}}
<footer class="site-footer">
{{> footer}}
</footer>
{{! Ghost outputs important scripts and data with this tag }}
{{ghost_foot}}
{{! The main JavaScript file for Boo }}
<script type="text/javascript" src="/assets/js/bootstrap.min.js"></script>
<script type="text/javascript" src="/assets/js/index.js"></script>
<script type="text/javascript">
$( document ).ready(function() {
$('#dp3').datepicker();
});
</script>
</body>
</html>