forked from hoist/hoist-ghost
-
Notifications
You must be signed in to change notification settings - Fork 14
/
author.hbs
29 lines (23 loc) · 820 Bytes
/
author.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
{{!< default}}
<header class="author-header">
<img src="{{author.image}}" class="profileimage">
<p>
<strong>{{author.name}}</strong><br>
{{author.bio}}
</p>
</header>
{{! Each post will be output using this markup }}
{{#foreach posts}}
<article class="{{post_class}}">
<a href="{{url}}" class="Article-Link">
<h2 class="post-title">{{{title}}}</h2>
<section class="post-excerpt">
<p>{{excerpt}}…</p>
</section>
</a>
<span class="post-meta">
{{tags suffix=" | "}} <time datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMM YYYY"}}</time>
</span>
</article>
{{/foreach}}
{{pagination}}