-
Notifications
You must be signed in to change notification settings - Fork 0
/
author.hbs
42 lines (30 loc) · 1.23 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
{{> site-head}}
<main>
<div class="container my-5">
<div class="row">
<div class="sidebar col-md-4 order-md-last">
{{> site-sidebar}}
</div>
<div class="col-md">
<header class="clearfix author mb-5">
{{#author}}
<h1 class="mb-5">
Author: {{name}} <span class="small text-muted">({{postsNumber}} {{ translate "listing.post" (math postsNumber '+' 0)}})</span>
</h1>
{{#if avatar}}
<img src="{{avatar}}" class="author__avatar" alt="{{name}}" style="position: relative; max-height: 100px; max-width: 100px; border-radius: 50%; float: left; margin-right: 15px;">
{{/if}}
{{#if description}}
<p>
{{description}}
</p>
{{/if}}
{{/author}}
</header>{{!-- .page-header --}}
{{> posts}}
{{> pagination}}
</div>
</div>
</div>
</main>
{{> site-footer}}