42222cc0f2002c04a88843d506a577b008f4d778
[editorial.git] / author.hbs
1 {{!< default}}
2 {{!-- The tag above means: insert everything in this file
3 into the {body} of the default.hbs template --}}
4
5 {{!-- Main --}}
6 <main id="main">
7
8 {{!-- Author info --}}
9 {{#author}}
10 <header class="author-header">
11 {{#if profile_image}}
12 <img class="author-profile-image" src="{{profile_image}}" alt="{{name}}" />
13 {{/if}}
14 <h1><a href="{{url}}">{{name}}</a></h1>
15 {{#if bio}}
16 <p class="content">{{bio}}</p>
17 {{/if}}
18 <div class="author-meta">
19 {{#if location}}
20 <div class="author-location icon fa-map-pin">{{location}} <span class="bull">&bull;</span></div>
21 {{/if}}
22 <div class="author-stats">
23 {{plural ../pagination.total empty='No posts' singular='% post' plural='% posts'}} <span class="bull">&bull;</span>
24 </div>
25 {{#if website}}
26 <a href="{{url}}" class="icon fa-globe" title="Website"><span class="label">Website</span></a>
27 {{/if}}
28 {{#if twitter}}
29 <a href="{{twitter_url}}" class="icon fa-twitter" title="Twitter"><span class="label">Twitter</span></a>
30 {{/if}}
31 {{#if facebook}}
32 <a href="{{facebook_url}}" class="icon fa-facebook" title="Facebook"><span class="label">Facebook</span></a>
33 {{/if}}
34 <a href="https://feedly.com/i/subscription/feed/{{url absolute="true"}}rss/" class="icon fa-rss" target="_blank" rel="noopener"><span class="label" title="RSS">RSS</span></a>
35 </div>
36 </header>
37 {{/author}}
38
39 {{!-- Posts --}}
40 <section class="posts">
41
42 {{#foreach posts}}
43 <article>
44 <header>
45 <span class="date">{{date format="MMM D, YYYY"}}</span>
46 <h2><a href="{{url}}">{{title}}</a></h2>
47 </header>
48 {{#if feature_image}}
49 <a href="{{url}}" class="image fit"><img src="{{img_url feature_image}}" alt="{{title}}" /></a>
50 {{/if}}
51 <p>{{excerpt words="33"}}</p>
52 <ul class="actions special">
53 <li><a href="{{url}}" class="button">Full Story</a></li>
54 </ul>
55 </article>
56 {{/foreach}}
57
58 </section>
59
60 {{!-- Pagination --}}
61 {{pagination}}
62
63 </main>