Vivid-Casper/tag.hbs

33 lines
1.1 KiB
Handlebars
Raw Normal View History

{{!< default}}
{{!-- The tag above means - insert everything in this file into the {body} of the default.hbs template --}}
2017-05-31 18:09:50 +00:00
{{#tag}}
2018-12-17 12:25:57 +00:00
{{> header background=feature_image}} {{!--Special header.hbs partial to generate the <header> tag--}}
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">
{{#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>
</div>
</div>
</header>
2017-05-31 18:09:50 +00:00
{{/tag}}
2017-05-15 20:03:47 +00:00
{{!-- The main content area --}}
<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>