forked from TryGhost/Alto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
post.hbs
28 lines (27 loc) · 958 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
{{!< default}}
<div class="content-area">
<main class="site-main">
{{#post}}
<article class="{{post_class}}{{#unless feature_image}} no-image{{/unless}} single-post">
{{> post-header single=true big_title=true}}
{{> post-media ratio="horizontal" with_caption=true}}
<div class="post-content gh-content kg-canvas">
{{content}}
</div>
<div class="container medium">
{{#if @custom.show_share_links}}
{{> share}}
{{/if}}
{{#if @custom.show_author}}
{{> author}}
{{/if}}
</div>
</article>
{{> post-navigation}}
{{#if @custom.show_related_posts}}
{{> related}}
{{/if}}
{{> comment}}
{{/post}}
</main>
</div>