2014-03-18 20:10:43 -04:00
|
|
|
{{!< default}}
|
2014-07-21 12:20:36 -04:00
|
|
|
{{! The tag above means - insert everything in this file into the {body} of the default.hbs template }}
|
2014-03-18 20:10:43 -04:00
|
|
|
|
2014-12-23 06:50:59 -05: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 10:43:44 -04:00
|
|
|
<nav class="main-nav overlay clearfix">
|
2015-02-28 07:34:58 -05:00
|
|
|
{{#if @blog.logo}}<a class="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="Blog Logo" /></a>{{/if}}
|
2015-02-28 08:00:15 -05:00
|
|
|
{{#if @blog.navigation}}
|
2015-02-28 07:34:58 -05:00
|
|
|
<a class="menu-button" href="#"><span class="burger">☰</span><span class="word">Menu</span></a>
|
2015-02-27 09:48:15 -05:00
|
|
|
{{/if}}
|
2014-07-20 10:43:44 -04:00
|
|
|
</nav>
|
2014-03-18 20:10:43 -04:00
|
|
|
<div class="vertical">
|
2014-07-21 08:45:34 -04:00
|
|
|
<div class="main-header-content inner">
|
|
|
|
<h1 class="page-title">{{tag.name}}</h1>
|
2014-12-23 06:50:59 -05:00
|
|
|
<h2 class="page-description">
|
|
|
|
{{#if tag.description}}
|
|
|
|
{{tag.description}}
|
|
|
|
{{else}}
|
2014-12-23 07:21:53 -05:00
|
|
|
A {{pagination.total}}-post collection
|
2014-12-23 06:50:59 -05:00
|
|
|
{{/if}}
|
2014-12-23 07:21:53 -05:00
|
|
|
</h2>
|
2014-03-18 20:10:43 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
{{! The main content area on the homepage }}
|
|
|
|
<main class="content" role="main">
|
|
|
|
|
2014-07-21 12:20:36 -04:00
|
|
|
{{! The tag below includes the post loop - partials/loop.hbs }}
|
|
|
|
{{> "loop"}}
|
2014-03-18 20:10:43 -04:00
|
|
|
|
2014-12-23 06:50:59 -05:00
|
|
|
</main>
|