-
Notifications
You must be signed in to change notification settings - Fork 35
/
author-box.hbs
26 lines (26 loc) · 1.13 KB
/
author-box.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
<section class="author">
<div class="author-image-placeholder u-placeholder">
<img class="author-image u-object-fit" src="{{img_url profile_image size="xs"}}" alt="{{name}}" loading="lazy">
</div>
<div class="author-wrapper">
<header class="author-header">
<h4 class="author-name"><a href="{{url}}">{{name}}</a></h4>
<div class="author-social">
{{#if facebook}}
<a class="author-social-item author-facebook" href="https://www.facebook.com/{{facebook}}" target="_blank" rel="noopener noreferrer">
{{> "icons/facebook"}}
</a>
{{/if}}
{{#if twitter}}
<a class="author-social-item author-twitter" href="https://twitter.com/{{twitter}}" target="_blank" rel="noopener noreferrer">
{{> "icons/twitter"}}
</a>
{{/if}}
</div>
</header>
{{#if location}}
<span class="author-meta">{{location}}</span>
{{/if}}
<div class="author-bio">{{bio}}</div>
</div>
</section>