-
Notifications
You must be signed in to change notification settings - Fork 7
/
author.hbs
44 lines (37 loc) · 811 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{{!< default}}
{{#author}}
<div class="author-tile">
{{#if profile_image}}
<div class="author-image" style="background-image: url({{profile_image}})"></div>
{{/if}}
<div class="author-info">
<h1 class="author-name">
{{name}}
</h1>
{{#if location}}
<p class="author-location icon-location">
{{location}}
</p>
{{/if}}
{{#if website}}
<p class="author-link icon-link">
<a href="{{website}}">
{{website}}
</a>
</p>
{{/if}}
<p class="author-stats">
{{plural ../pagination.total empty='No posts' singular='% post' plural='% posts'}}
</p>
</div>
{{#if bio}}
<div class="author-bio">
<p>
{{bio}}
</p>
</div>
{{/if}}
</div>
{{/author}}
{{!-- The tag below includes the post loop - partials/loop.hbs --}}
{{> "loop"}}