2014-03-19 00:10:43 +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-03-19 00:10:43 +00:00
|
|
|
|
2017-05-15 20:03:47 +00:00
|
|
|
{{!-- The big featured header, it uses blog cover image as a BG if available --}}
|
2017-05-31 18:09:50 +00:00
|
|
|
{{#tag}}
|
|
|
|
<header class="site-header outer {{#if feature_image}}" style="background-image: url({{feature_image}}){{else}}no-cover{{/if}}">
|
2017-05-15 20:03:47 +00:00
|
|
|
<div class="inner">
|
2017-06-13 18:02:22 +00:00
|
|
|
{{> "site-nav"}}
|
2017-05-31 18:09:50 +00:00
|
|
|
<div class="site-header-content">
|
|
|
|
<h1 class="site-title">{{name}}</h1>
|
|
|
|
<h2 class="site-description">
|
2016-05-08 09:01:25 +00:00
|
|
|
{{#if description}}
|
|
|
|
{{description}}
|
2014-12-23 11:50:59 +00:00
|
|
|
{{else}}
|
2017-06-13 17:51:08 +00:00
|
|
|
A collection of {{plural ../pagination.total empty='posts' singular='% post' plural='% posts'}}
|
2014-12-23 11:50:59 +00:00
|
|
|
{{/if}}
|
2014-12-23 12:21:53 +00:00
|
|
|
</h2>
|
2014-03-19 00:10:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
2017-05-31 18:09:50 +00:00
|
|
|
{{/tag}}
|
2014-03-19 00:10:43 +00:00
|
|
|
|
2017-05-15 20:03:47 +00:00
|
|
|
{{!-- The main content area --}}
|
2018-04-17 20:19:05 +00:00
|
|
|
<main id="site-main" class="site-main outer">
|
2017-05-15 20:03:47 +00:00
|
|
|
<div class="inner">
|
2017-06-12 09:01:00 +00: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 20:03:47 +00:00
|
|
|
</div>
|
2014-12-23 11:50:59 +00:00
|
|
|
</main>
|