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
|
|
|
|
2016-05-08 08:50:20 +00:00
|
|
|
{{!-- The big featured header --}}
|
2014-07-21 12:45:34 +00:00
|
|
|
|
2016-05-08 08:50:20 +00:00
|
|
|
{{!-- Everything inside the #author tags pulls data from the author --}}
|
2014-08-05 19:44:31 +00:00
|
|
|
{{#author}}
|
|
|
|
<header class="main-header author-head {{#if cover}}" style="background-image: url({{cover}}){{else}}no-cover{{/if}}">
|
|
|
|
<nav class="main-nav overlay clearfix">
|
2015-05-15 21:01:01 +00:00
|
|
|
{{#if @blog.logo}}<a class="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="{{@blog.title}}" /></a>{{/if}}
|
2015-02-28 13:00:15 +00:00
|
|
|
{{#if @blog.navigation}}
|
2015-03-23 16:21:53 +00:00
|
|
|
<a class="menu-button icon-menu" href="#"><span class="word">Menu</span></a>
|
2015-02-27 14:48:15 +00:00
|
|
|
{{/if}}
|
2014-08-05 19:44:31 +00:00
|
|
|
</nav>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<section class="author-profile inner">
|
|
|
|
{{#if image}}
|
|
|
|
<figure class="author-image">
|
|
|
|
<div class="img" style="background-image: url({{image}})"><span class="hidden">{{name}}'s Picture</span></div>
|
|
|
|
</figure>
|
|
|
|
{{/if}}
|
|
|
|
<h1 class="author-title">{{name}}</h1>
|
2014-10-21 15:10:20 +00:00
|
|
|
{{#if bio}}
|
|
|
|
<h2 class="author-bio">{{bio}}</h2>
|
|
|
|
{{/if}}
|
2014-08-05 19:44:31 +00:00
|
|
|
<div class="author-meta">
|
|
|
|
{{#if location}}<span class="author-location icon-location">{{location}}</span>{{/if}}
|
|
|
|
{{#if website}}<span class="author-link icon-link"><a href="{{website}}">{{website}}</a></span>{{/if}}
|
|
|
|
<span class="author-stats"><i class="icon-stats"></i> {{plural ../pagination.total empty='No posts' singular='% post' plural='% posts'}}</span>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
{{/author}}
|
2014-07-21 12:45:34 +00:00
|
|
|
|
2016-05-08 08:50:20 +00:00
|
|
|
{{!-- The main content area on the homepage --}}
|
2014-07-21 12:45:34 +00:00
|
|
|
<main class="content" role="main">
|
|
|
|
|
2016-05-08 08:50:20 +00:00
|
|
|
{{!-- The tag below includes the post loop - partials/loop.hbs --}}
|
2014-07-21 16:20:36 +00:00
|
|
|
{{> "loop"}}
|
2014-07-21 12:45:34 +00:00
|
|
|
|
2015-02-28 12:34:58 +00:00
|
|
|
</main>
|