-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpost.hbs
45 lines (40 loc) · 1.16 KB
/
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
36
37
38
39
40
41
42
43
44
{{!< default}}
{{#post}}
<section class="hero background-img is-large" style="background-image: url('{{img_url feature_image}}')">
<!-- Hero content: will be in the middle -->
<div class="hero-body">
<div class="container has-text-centered">
<h1 class="title has-text-white is-size-1 has-text-weight-bold">
{{title}}
</h1>
{{#primary_author}}
<a href="{{url}}" class="has-text-light is-size-4">{{name}}</a>
{{/primary_author}}
</div>
</div>
</section>
<section class="post">
<div class="container">
<div class="columns">
<div class="column">
<div class="post-content">
{{#if tags}}
<div class="post-tags">
{{#foreach tags limit="3"}}
<a class="button tag-{{slug}} is-rounded" href="{{url}}" title="{{name}}" aria-label="{{name}}s">#{{name}}</a>
{{/foreach}}
</div>
{{/if}}
<div class="post-content__inner">
{{content}}
</div>
</div>
{{> social-share}}
{{> disqus}}
</div>
</div>
</div>
</section>
{{!-- Related posts --}}
{{> related-posts}}
{{/post}}