-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauthor.hbs
More file actions
26 lines (23 loc) · 776 Bytes
/
author.hbs
File metadata and controls
26 lines (23 loc) · 776 Bytes
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}}
{{!-- The tag above means - insert everything in this file into the {body} of the default.hbs template --}}
{{#author}}
<div class="w-75-l w-100 fl">
<article class="bg-white w-100 h-100 fl mt3">
<div class="ba b--black-10 ma1">
<a href="{{url}}" title="{{name}}">
<div style="height:200px; background-size: cover; background-position: 50% 50%; background-image: url({{image}});"></div>
</a>
<div class="pa3">
<a href="{{url}}" class="lh-title f5 b pointer dib bg-white black-70 link underline-hover border-box">{{name}}</a>
<p class="gray db">
{{#if bio}}
{{bio}}
{{/if}}
</p>
</div>
</div>
</article>
{{/author}}
{{!-- The tag below includes the post loop - partials/loop.hbs --}}
{{> "loop"}}
</div>