2014-03-18 20:10:43 -04:00
|
|
|
{{!< default}}
|
2016-05-08 04:50:20 -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
|
|
|
|
2016-05-08 04:50:20 -04:00
|
|
|
{{!-- If we have a tag cover, display that - else blog cover - else nothing --}}
|
2014-12-23 06:50:59 -05:00
|
|
|
<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-05-15 17:01:01 -04:00
|
|
|
{{#if @blog.logo}}<a class="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="{{@blog.title}}" /></a>{{/if}}
|
2015-02-28 08:00:15 -05:00
|
|
|
{{#if @blog.navigation}}
|
2015-03-23 12:21:53 -04:00
|
|
|
<a class="menu-button icon-menu" href="#"><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">
|
2016-05-08 05:01:25 -04:00
|
|
|
{{#tag}}
|
2014-07-21 08:45:34 -04:00
|
|
|
<div class="main-header-content inner">
|
2016-05-08 05:01:25 -04:00
|
|
|
<h1 class="page-title">{{name}}</h1>
|
2014-12-23 06:50:59 -05:00
|
|
|
<h2 class="page-description">
|
2016-05-08 05:01:25 -04:00
|
|
|
{{#if description}}
|
|
|
|
{{description}}
|
2014-12-23 06:50:59 -05:00
|
|
|
{{else}}
|
2016-05-08 05:01:25 -04: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>
|
2016-05-08 05:01:25 -04:00
|
|
|
{{/tag}}
|
2014-03-18 20:10:43 -04:00
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
2016-05-08 04:50:20 -04:00
|
|
|
{{!-- The main content area on the homepage --}}
|
2014-03-18 20:10:43 -04:00
|
|
|
<main class="content" role="main">
|
|
|
|
|
2016-05-08 04:50:20 -04:00
|
|
|
{{!-- The tag below includes the post loop - partials/loop.hbs --}}
|
2014-07-21 12:20:36 -04:00
|
|
|
{{> "loop"}}
|
2014-03-18 20:10:43 -04:00
|
|
|
|
2014-12-23 06:50:59 -05:00
|
|
|
</main>
|