forked from nitinthewiz/ghost-phantom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
post.hbs
35 lines (26 loc) · 843 Bytes
/
post.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
{{!< default}}
{{#post}}
{{> post-meta}}
<header class="animated fadeIn" {{#if feature_image}}style="background-image: url({{feature_image}})"{{/if}}>
<div class="container" data-stellar-ratio="0.75">
{{> title}}
{{> sidebar}}
</div>
</header>
<div class="push-article">
{{! Temporary indentation shift for Handlebars issue }}
{{> content}}
</div>
<div class="container">
<div class="author animated fadeIn clearfix">
{{#author}}
<img src="{{img_url profile_image}}" alt="{{name}}" />
<div class="info">
<a href="{{url}}" class="name">{{name}}</a>
<p class="bio">{{bio}}</p>
</div>
{{/author}}
</div>
</div>
{{!> comments}}
{{/post}}