-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathauthor.hbs
44 lines (41 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
{{!< default}}
<article class="page-template page-author">
{{> material-cover}}
<div class="profile-container animated fade-in">
{{#primary_author}}
<div class="profile-image">
{{#if profile_image}}
<img src="{{img_url profile_image}}" alt="{{name}}'s picture" class="avatar rounded" />
{{else}}
<img src="/ghost/img/user-image.png" class="avatar rounded" />
{{/if}}
</div>
{{/primary_author}}
<div class="post-card animated">
<div class="post-container">
{{#primary_author}}
<div class="author-header">
<h1>
{{name}}
<a rel="me" target="_blank" href="{{twitter_url}}" class="hvr-grow-rotate" title="{{name}}'s twitter">
<i class='fa fa-twitter'></i>
</a>
</h1>
<p>{{#if bio}}{{bio}}{{/if}}</p>
</div>
{{/primary_author}}
<ol class="author-posts-list">
{{#foreach posts}}
<li>
<a href="{{url}}" title="link to {{{title}}}">
<h2>{{{title}}}</h2>
<p class="description">{{excerpt}}…</p>
</a>
</li>
{{/foreach}}
</ol>
</div>
</div>
</div>
{{pagination}}
</article>