Vivid-Casper/tag.hbs

31 lines
1.2 KiB
Handlebars
Raw Normal View History

{{!< default}}
{{! The tag above means - insert everything in this file into the {body} of the default.hbs template }}
2014-12-23 11:50:59 +00:00
{{! If we have a tag cover, display that - else blog cover - else nothing }}
<header class="main-header tag-head {{#if tag.image}}" style="background-image: url({{tag.image}}){{else}}{{#if @blog.cover}}" style="background-image: url({{@blog.cover}}){{else}}no-cover{{/if}}{{/if}}">
<nav class="main-nav overlay clearfix">
<a class="back-button icon-arrow-left" href="{{@blog.url}}">Home</a>
<a class="subscribe-button icon-feed" href="{{@blog.url}}/tag/{{tag.slug}}/rss/">{{tag.name}}</a>
</nav>
<div class="vertical">
<div class="main-header-content inner">
<h1 class="page-title">{{tag.name}}</h1>
2014-12-23 11:50:59 +00:00
<h2 class="page-description">
{{#if tag.description}}
{{tag.description}}
{{else}}
2014-12-23 12:21:53 +00:00
A {{pagination.total}}-post collection
2014-12-23 11:50:59 +00:00
{{/if}}
2014-12-23 12:21:53 +00:00
</h2>
</div>
</div>
</header>
{{! The main content area on the homepage }}
<main class="content" role="main">
{{! The tag below includes the post loop - partials/loop.hbs }}
{{> "loop"}}
2014-12-23 11:50:59 +00:00
</main>