-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathauthor.hbs
44 lines (37 loc) · 1.48 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
42
43
44
{{!< default}}
{{#author}}
<header class="author-header {{#if cover_image}}author-header--with-image{{/if}}" style="background-image: url({{cover_image}});">
<div class="author-header-wrapper">
{{#if profile_image}}
<img class="author-header-image" src="{{profile_image}}" alt="{{name}}" />
{{/if}}
<h1>{{name}}</h1>
{{#if bio}}
<p>{{bio}}</p>
{{/if}}
{{#if location}}
<div class="author-header-location">
<span aria-hidden="true">{{> "icons/globe"}}</span>
<span>{{location}}</span>
</div>
{{/if}}
<ul class="author-header-meta social-media-icons">
{{#if website}}
<li><a href="{{website}}" target="_blank" rel="noopener" title="{{t "Website"}}">{{> "icons/link"}}</a></li>
{{/if}}
{{#if twitter}}
<li><a href="{{twitter_url}}" target="_blank" rel="noopener" title="{{t "Twitter"}}">{{> "icons/twitter"}}</a></li>
{{/if}}
{{#if facebook}}
<li><a href="{{facebook_url}}" target="_blank" rel="noopener" title="{{t "Facebook"}}">{{> "icons/facebook"}}</a></li>
{{/if}}
</ul>
</div>
</header>
{{/author}}
<div class="post-feed">
{{#foreach posts}}
{{> "post-card"}}
{{/foreach}}
</div>
{{pagination}}