-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpost.hbs
32 lines (30 loc) · 932 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
{{!< default}}
{{#post}}
<main class="main-content">
<article class="{{post_class}}">
<header class="post-header">
{{#if image}}
<img class="post-image post-main-image" src="{{image}}">
{{/if}}
<h1 class="post-title">{{title}}</h1>
<section class="post-meta">
<time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time> {{!tags prefix=" on "}}
</section>
</header>
<section class="post-content">
{{content}}
</section>
<footer class="post-footer">
{{#author}}
{{#if image}}
<a href="{{url}}"><img class="post-author-image" src="{{image}}" alt="Author image"></a>
{{/if}}
<a class="w-inline-block post-author-name" href="{{url}}"><h6>{{name}}</h6></a>
<div class="post-author-bio">
{{bio}}
</div>
{{/author}}
</footer>
</article>
</main>
{{/post}}