2014-03-19 00:10:43 +00:00
|
|
|
{{!< default}}
|
2014-07-21 16:20:36 +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
|
|
|
|
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}}">
|
2014-07-20 14:43:44 +00:00
|
|
|
<nav class="main-nav overlay clearfix">
|
|
|
|
<a class="back-button icon-arrow-left" href="{{@blog.url}}">Home</a>
|
2014-07-21 16:20:36 +00:00
|
|
|
<a class="subscribe-button icon-feed" href="{{@blog.url}}/tag/{{tag.slug}}/rss/">{{tag.name}}</a>
|
2014-07-20 14:43:44 +00:00
|
|
|
</nav>
|
2014-03-19 00:10:43 +00:00
|
|
|
<div class="vertical">
|
2014-07-21 12:45:34 +00:00
|
|
|
<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>
|
2014-03-19 00:10:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
{{! The main content area on the homepage }}
|
|
|
|
<main class="content" role="main">
|
|
|
|
|
2014-07-21 16:20:36 +00:00
|
|
|
{{! The tag below includes the post loop - partials/loop.hbs }}
|
|
|
|
{{> "loop"}}
|
2014-03-19 00:10:43 +00:00
|
|
|
|
2014-12-23 11:50:59 +00:00
|
|
|
</main>
|