-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpage.hbs
29 lines (27 loc) · 843 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
26
27
28
29
{{!< default}}
<link rel="stylesheet" href="{{asset "css/post.css"}}">
{{#post}}
<article class="{{post_class}}">
{{#if feature_image}}
<div class="post-image" style="background-image:url({{img_url feature_image}})">
<div class="post-image-header">
<div class="post-image-info">
<h1 class="post-image-title">{{title}}</h1>
</div>
</div>
</div>
{{else}}
<div class="post-container" style="padding-bottom:0">
<header class="post-header">
<h1 class="post-title">{{title}}</h1>
</header>
</div>
{{/if}}
<div class="post-container" style="padding-top:0">
<hr class="post-hr">
<section class="post-content">
{{content}}
</section>
</div>
</article>
{{/post}}