-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathauthor.hbs
26 lines (23 loc) · 885 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
{{!< default}}
<header class="animated fadeIn" {{#if author.cover}}style="background-image: url({{author.cover}})"{{/if}}>
<div class="container" data-stellar-ratio="0.75">
<div class="title animated fadeInUp">
{{#author}}
<h1>{{name}}</h1>
<p>{{bio}}</p>
{{/author}}
</div>
<div class="sidebar text-right meta">
<div class="published animated fadeInUp">
<div class="author-image">
{{#author}}
<img src="{{image}}" alt="{{name}}" />
{{/author}}
</div>
<strong class="article-count text-center">{{plural pagination.total empty="No posts" singular="% article" plural="% articles"}}</strong>
</div>
</div>
</div>
</header>
{{> excerpts}}
{{pagination}}