forked from TryGhost/Alto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
author.hbs
25 lines (24 loc) · 820 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}}
<div class="content-area">
<main class="site-main">
{{#author}}
<section class="term container large">
{{#if profile_image}}
<div class="term-image-container u-placeholder">
<img class="term-image u-object-fit" src={{img_url profile_image size="xs"}} alt="{{name}}">
</div>
{{/if}}
<div class="term-wrapper">
<h1 class="term-name">{{name}}</h1>
<div class="term-description">{{bio}}</div>
</div>
</section>
{{/author}}
<div class="post-feed">
{{#foreach posts}}
{{> "loop"}}
{{/foreach}}
</div>
{{pagination}}
</main>
</div>