-
Notifications
You must be signed in to change notification settings - Fork 0
/
post.hbs
49 lines (32 loc) · 969 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{{!< default}}
{{>content-header}}
<main class="container content" id="content">
<article class="post {{post_class}}">
{{#post}}
<header class="post__header">
<img src="{{feature_image}}" alt="{{title}}" class="post-image post-image--full">
<h1 class="post__title">{{title}}</h1>
<div class="post__meta">
<p class="main">
{{date format="Do MMMM YYYY"}}, par
{{#primary_author}}<a href="{{url}}">{{name}}</a>{{/primary_author}}
</p>
<p class="sep">•</p>
{{#if tags}}
<span class="post__tags">
{{tags limit="3" separator=""}}
</span>
{{/if}}
</div>
</header>
<section class="post__content">
{{#if access}}
{{content}}
{{/if}}
</section>
<footer class="post__footer">
{{> author-info}}
</footer>
{{/post}}
</article>
</main>