-
Notifications
You must be signed in to change notification settings - Fork 0
/
author.hbs
25 lines (21 loc) · 948 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
{{!< default}}
{{! The tag above means - insert everything in this file into the {body} of the default.hbs template }}
{{! The main content area on the homepage }}
{{! The tag below includes the post loop - partials/loop.hbs }}
<section class="main main-archive">
{{#author}}
<article class="result author-enhanced">
<div class="inner post-inner">
<span class="author-avatar"><img alt="" src="{{image}}"></span>
<span class="meta">Posts by</span>
<h1 class="searching">{{name}}</h1>
<p>{{bio}}</p>
<div class="author-socials-wrap">
{{#if website}}<a class="author-socials" href="http://www.meanthemes.com" target="_blank"><i class="fa fa-link"></i><span>Website</span></a>{{/if}}
<a class="author-socials" href="{{url}}rss/" target="_blank"><i class="fa fa-rss"></i><span>RSS</span></a>
</div>
</div>
</article>
{{/author}}
{{> "loop"}}
</section>