Screenshot
[editorial.git] / partials / byline-single.hbs
1 {{!-- Everything inside the #author tags pulls data from the author --}}
2 {{#primary_author}}
3
4 <section class="author-card">
5 {{#if profile_image}}
6 <img class="author-profile-image" src="{{profile_image}}" alt="{{name}}" />
7 {{else}}
8 <span class="avatar-wrapper">{{> "icons/avatar"}}</span>
9 {{/if}}
10 <section class="author-card-content">
11 <h4 class="author-card-name"><a href="{{url}}">{{name}}</a></h4>
12 {{#if bio}}
13 <p>{{bio}}</p>
14 {{else}}
15 <p>Read <a href="{{url}}">more posts</a> by this author.</p>
16 {{/if}}
17 </section>
18 </section>
19 <div class="post-full-footer-right">
20 <a class="author-card-button" href="{{url}}">Read More</a>
21 </div>
22
23 {{/primary_author}}