2014-03-18 20:10:43 -04:00
|
|
|
{{!< default}}
|
2016-05-08 04:50:20 -04:00
|
|
|
{{!-- The tag above means - insert everything in this file into the {body} of the default.hbs template --}}
|
2014-03-18 20:10:43 -04:00
|
|
|
|
2017-05-15 16:03:47 -04:00
|
|
|
{{!-- The big featured header, it uses blog cover image as a BG if available --}}
|
2017-05-31 14:09:50 -04:00
|
|
|
{{#tag}}
|
|
|
|
<header class="site-header outer {{#if feature_image}}" style="background-image: url({{feature_image}}){{else}}no-cover{{/if}}">
|
2017-05-15 16:03:47 -04:00
|
|
|
<div class="inner">
|
2017-06-13 14:02:22 -04:00
|
|
|
{{> "site-nav"}}
|
2017-05-31 14:09:50 -04:00
|
|
|
<div class="site-header-content">
|
|
|
|
<h1 class="site-title">{{name}}</h1>
|
|
|
|
<h2 class="site-description">
|
2016-05-08 05:01:25 -04:00
|
|
|
{{#if description}}
|
|
|
|
{{description}}
|
2014-12-23 06:50:59 -05:00
|
|
|
{{else}}
|
2017-06-13 13:51:08 -04:00
|
|
|
A collection of {{plural ../pagination.total empty='posts' singular='% post' plural='% posts'}}
|
2014-12-23 06:50:59 -05:00
|
|
|
{{/if}}
|
2014-12-23 07:21:53 -05:00
|
|
|
</h2>
|
2014-03-18 20:10:43 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
2017-05-31 14:09:50 -04:00
|
|
|
{{/tag}}
|
2014-03-18 20:10:43 -04:00
|
|
|
|
2017-05-15 16:03:47 -04:00
|
|
|
{{!-- The main content area --}}
|
|
|
|
<main id="site-main" class="site-main outer" role="main">
|
|
|
|
<div class="inner">
|
2017-06-12 05:01:00 -04:00
|
|
|
<div class="post-feed">
|
|
|
|
{{#foreach posts}}
|
|
|
|
{{!-- The tag below includes the markup for each post - partials/post-card.hbs --}}
|
|
|
|
{{> "post-card"}}
|
|
|
|
{{/foreach}}
|
|
|
|
</div>
|
2017-05-15 16:03:47 -04:00
|
|
|
</div>
|
2014-12-23 06:50:59 -05:00
|
|
|
</main>
|