weflock/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 14:09:50 -04:00
{{#tag}}
2018-12-17 07:25:57 -05:00
{{> header background=feature_image}} {{!--Special header.hbs partial to generate the <header> tag--}}
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">
{{#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>
</div>
</div>
</header>
2017-05-31 14:09:50 -04:00
{{/tag}}
2017-05-15 16:03:47 -04:00
{{!-- The main content area --}}
<main id="site-main" class="site-main outer">
2017-05-15 16:03:47 -04:00
<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>