-
Notifications
You must be signed in to change notification settings - Fork 360
/
author.hbs
34 lines (28 loc) · 1.14 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
{{!< default}}
<div class="container">
<section class="author-profile">
{{#author}}
<div class="author-heading">
{{#if profile_image}}
<img class="author-avatar" src="{{img_url profile_image}}" width="50" height="50" alt="{{name}}">
{{/if}}
<h1 class="author-name">{{name}}</h1>
</div>
<div class="author-meta">
<span><i class="fa fa-bar-chart-o"></i> {{plural ../pagination.total empty='No posts' singular='% post' plural='% posts'}}</span>
{{#if location}}<span><i class="fa fa-map-marker"></i>{{location}}</span>{{/if}}
{{#if website}}<span><i class="fa fa-link"></i><a href="{{website}}">{{website}}</a></span>{{/if}}
<span><i class="fa fa-rss-square"></i><a href="{{url}}rss/">{{name}}</a></span>
</div>
{{#if bio}}
<p class="author-bio">{{bio}}</p>
{{/if}}
{{/author}}
</section>
<ol class="post-list">
{{> loop}}
</ol>
<div class="post-navigation">
{{pagination}}
</div>
</div>