2014-07-21 12:45:34 +00:00
|
|
|
{{!< default}}
|
2016-05-08 08:50:20 +00:00
|
|
|
{{!-- The tag above means - insert everything in this file into the {body} of the default.hbs template --}}
|
2014-07-21 12:45:34 +00:00
|
|
|
|
2014-08-05 19:44:31 +00:00
|
|
|
{{#author}}
|
2017-06-13 18:07:26 +00:00
|
|
|
{{!-- Everything inside the #author tags pulls data from the author --}}
|
2018-12-17 12:25:57 +00:00
|
|
|
|
|
|
|
|
2019-10-21 05:43:34 +00:00
|
|
|
<header class="site-archive-header">
|
|
|
|
{{> site-header}}
|
|
|
|
{{> header-background background=cover_image}} {{!--Special header-image.hbs partial to generate the background image--}}
|
|
|
|
<div class="inner">
|
|
|
|
<div class="site-header-content author-header">
|
|
|
|
{{#if profile_image}}
|
|
|
|
<img class="author-profile-image" src="{{profile_image}}" alt="{{name}}" />
|
2020-03-04 13:34:03 +00:00
|
|
|
{{else}}
|
|
|
|
<span class="author-profile-image">{{> "icons/avatar"}}</span>
|
2017-06-13 12:48:06 +00:00
|
|
|
{{/if}}
|
2019-10-21 05:43:34 +00:00
|
|
|
<div class="author-header-content">
|
|
|
|
<h1 class="site-title">{{name}}</h1>
|
|
|
|
{{#if bio}}
|
|
|
|
<h2 class="author-bio">{{bio}}</h2>
|
|
|
|
{{/if}}
|
|
|
|
<div class="author-meta">
|
|
|
|
{{#if location}}
|
|
|
|
<div class="author-location">{{location}}</div>
|
|
|
|
{{/if}}
|
|
|
|
<div class="author-stats">
|
|
|
|
{{plural ../pagination.total empty='No posts' singular='% post' plural='% posts'}}
|
|
|
|
</div>
|
|
|
|
{{#if website}}
|
|
|
|
<span class="author-social-link"><a href="{{website}}" target="_blank" rel="noopener">Website</a></span>
|
|
|
|
{{/if}}
|
|
|
|
{{#if twitter}}
|
|
|
|
<span class="author-social-link"><a href="{{twitter_url}}" target="_blank" rel="noopener">Twitter</a></span>
|
|
|
|
{{/if}}
|
|
|
|
{{#if facebook}}
|
|
|
|
<span class="author-social-link"><a href="{{facebook_url}}" target="_blank" rel="noopener">Facebook</a></span>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
2017-06-13 12:48:06 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2014-08-05 19:44:31 +00:00
|
|
|
</div>
|
2017-06-13 12:48:06 +00:00
|
|
|
</div>
|
|
|
|
</header>
|
2014-08-05 19:44:31 +00:00
|
|
|
{{/author}}
|
2014-07-21 12:45:34 +00:00
|
|
|
|
2017-06-13 18:07:26 +00:00
|
|
|
{{!-- The main content area --}}
|
2018-04-17 20:19:05 +00:00
|
|
|
<main id="site-main" class="site-main outer">
|
2019-10-21 05:43:34 +00:00
|
|
|
<div class="inner posts">
|
2017-06-16 12:16:22 +00:00
|
|
|
|
2017-06-13 12:48:06 +00:00
|
|
|
<div class="post-feed">
|
|
|
|
{{#foreach posts}}
|
2017-06-16 12:16:22 +00:00
|
|
|
|
2017-06-13 12:48:06 +00:00
|
|
|
{{!-- The tag below includes the markup for each post - partials/post-card.hbs --}}
|
|
|
|
{{> "post-card"}}
|
2017-06-16 12:16:22 +00:00
|
|
|
|
2017-06-13 12:48:06 +00:00
|
|
|
{{/foreach}}
|
|
|
|
</div>
|
2017-06-16 12:16:22 +00:00
|
|
|
|
2017-06-13 12:48:06 +00:00
|
|
|
</div>
|
2015-02-28 12:34:58 +00:00
|
|
|
</main>
|