-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
author.hbs
52 lines (43 loc) · 1.59 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
45
46
47
48
49
50
51
52
{{!< default}}
{{#contentFor 'styles'}}
<link rel="stylesheet" type="text/css" href="{{asset "css/pagination.css"}}" />
{{/contentFor}}
{{#contentFor 'title'}}{{meta_title}}{{/contentFor}}
{{#contentFor 'htmlLang'}}{{@site.locale}}{{/contentFor}}
<div class="mds-page mds-author">
<div class="mds-container">
{{#author}}
<header class="mds-header">
{{#if profile_image}}
<img class="mds-author-image" src="{{profile_image}}" alt="{{name}}" />
{{/if}}
<h1>{{name}}</h1>
{{#if bio}}
<p>{{bio}}</p>
{{/if}}
<div class="mds-author-meta">
<div class="mds-author-links">
{{#if website}}
<a href="{{website}}" target="_blank" rel="noopener">{{> "icons/rss"}}</a>
{{/if}}
{{#if twitter}}
<a href="{{twitter_url}}" target="_blank" rel="noopener">{{> "icons/twitter"}}</a>
{{/if}}
{{#if facebook}}
<a href="{{facebook_url}}" target="_blank" rel="noopener">{{> "icons/facebook"}}</a>
{{/if}}
</div>
</div>
{{#if cover_image}}
<img class="mds-page-image" src="{{cover_image}}" alt="{{name}}" />
{{/if}}
</header>
{{/author}}
<div class="mds-postfeed">
{{#foreach posts visibility="public"}}
{{> "card"}}
{{/foreach}}
</div>
{{pagination}}
</div>
</div>