-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthor.hbs
50 lines (44 loc) · 871 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
45
46
47
48
49
50
{{!< default}}
{{#author}}
{{#if feature_image}}
<img class="post-feature-image" src="{{feature_image}}" width="1024">
{{/if}}
<header class="author">
{{#if profile_image}}
<img class="author-avatar" alt="{{name}}'s profile" src="{{img_url profile_image}}" width="32" />
{{/if}}
<h1 class="author-name">{{name}}</h2>
{{#if bio}}
<p class="author-bio">
{{bio}}
</p>
{{/if}}
<ul class="nav">
{{#if website}}
<li>
<a href="{{website}}" title="Website">
{{!--
<span class="icon">
{{> icons/solid/globe-asia}}
</span>
--}}
{{website}}
</a>
</li>
{{/if}}
{{#if twitter}}
<li>
<a href="{{twitter_url}}" title="Twitter">
{{!--
<span class="icon">
{{> icons/brands/twitter}}
</span>
--}}
{{twitter}}
</a>
</li>
{{/if}}
</ul>
</header>
{{/author}}
{{> "loop"}}