-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
page.hbs
executable file
·25 lines (25 loc) · 1014 Bytes
/
page.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
{{!< default}}
{{! The tag above means - insert everything in this file into the {body} of the default.hbs template }}
{{#post}}
<div class="site-content-wrap">
<div class="container-fluid">
<div class="row">
<div class="col">
<div class="post-wrap">
<article class="post-single {{post_class}}">
<div class="post-header d-flex {{#if feature_image}}has-image"
style="background-image: url({{feature_image}});{{/if}}">
<div class="header-content-wrap text-center">
<h1 class="post-title text-center">{{title}}</h1>
</div>
</div>
<div class="post-content">
{{content}}
</div>
</article>
</div>
</div>
</div>
</div>
</div>
{{/post}}