-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthor.hbs
41 lines (35 loc) · 1.02 KB
/
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
{{!< default}}
{{#author}}
<div class="c-author-page">
{{#if image}}
<div class="c-author-page__image">
<img class="c-author-page__image__src" src="{{image}}" alt="{{name}}'s Picture"/>
</div>
{{/if}}
<h1 class="c-author-page__title">
{{name}}
</h1>
{{#if bio}}
<h3 class="c-author-page__bio">
{{bio}}
</h3>
{{/if}}
<div class="c-author-page__meta">
{{#if location}}
<span class="c-author-page__meta__location">{{location}}</span>
{{/if}}
{{#if location}}
{{#if website}}
-
{{/if}}
{{/if}}
{{#if website}}
<span class="c-author-page__meta__website">
<a href="{{website}}" target="_blank">{{website}}</a>
</span>
{{/if}}
</div>
</div>
{{/author}}
{{> "post-list"}}
{{pagination}}