32 lines
892 B
Handlebars
32 lines
892 B
Handlebars
{{!< default}}
|
|
{{!-- The tag above means - insert everything in this file into the {body} of the default.hbs template --}}
|
|
{{> "header" }}
|
|
|
|
<header class="main-header tag-head {{#if tag.feature_image}}" style="background-image: url({{tag.feature_image}}){{else}}no-cover{{/if}}">
|
|
</header>
|
|
|
|
{{!-- The main content area on the homepage --}}
|
|
<main class="content" role="main">
|
|
{{#tag}}
|
|
<div class="main-header-content inner">
|
|
<h1 class="page-title">
|
|
{{name}}
|
|
{{#if description}}
|
|
<span class="description">{{description}}</span>
|
|
{{/if}}
|
|
</h1>
|
|
|
|
<hr/>
|
|
</div>
|
|
{{/tag}}
|
|
|
|
{{!-- The tag below includes the post loop - partials/loop.hbs --}}
|
|
{{#if pagination.total}}
|
|
{{> "loop"}}
|
|
{{else}}
|
|
<div class="inner"><p>There are no items in this collection.</p></div>
|
|
{{/if}}
|
|
|
|
|
|
</main>
|