2014-03-19 00:10:43 +00:00
|
|
|
{{!< default}}
|
2016-05-08 08:50:20 +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
|
|
|
|
2017-05-15 20:03:47 +00:00
|
|
|
{{!-- The big featured header, it uses blog cover image as a BG if available --}}
|
|
|
|
<header class="site-header outer {{#if @blog.cover_image}}" style="background-image: url({{@blog.cover_image}}){{else}}no-cover{{/if}}">
|
|
|
|
<div class="inner">
|
|
|
|
<nav class="site-nav">
|
|
|
|
<div class="site-nav-left">
|
|
|
|
{{#if @blog.navigation}}
|
|
|
|
{{!-- The blog navigation links from /ghost/settings/design --}}
|
|
|
|
{{navigation}}
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
<div class="site-nav-right">
|
|
|
|
<div class="social-links">
|
|
|
|
{{#if @blog.facebook}}
|
|
|
|
<a class="social-link social-link-fb" href="{{facebook_url}}">{{> "icons/facebook"}}</a>
|
|
|
|
{{/if}}
|
|
|
|
{{#if @blog.twitter}}
|
|
|
|
<a class="social-link social-link-tw" href="{{twitter_url}}">{{> "icons/twitter"}}</a>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
{{#if @labs.subscribers}}
|
|
|
|
<a class="subscribe-button" href="{{@blog.url}}/subscribe/">Subscribe</a>
|
|
|
|
{{else}}
|
|
|
|
<a class="rss-button" href="http://cloud.feedly.com/#subscription/feed/{{@blog.url}}/rss/" target="_blank">{{> "icons/rss"}}</a>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
2016-05-08 08:50:20 +00:00
|
|
|
{{!-- If we have a tag cover, display that - else blog cover - else nothing --}}
|
2014-12-23 11:50:59 +00: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-03-19 00:10:43 +00:00
|
|
|
<div class="vertical">
|
2016-05-08 09:01:25 +00:00
|
|
|
{{#tag}}
|
2014-07-21 12:45:34 +00:00
|
|
|
<div class="main-header-content inner">
|
2016-05-08 09:01:25 +00:00
|
|
|
<h1 class="page-title">{{name}}</h1>
|
2014-12-23 11:50:59 +00:00
|
|
|
<h2 class="page-description">
|
2016-05-08 09:01:25 +00:00
|
|
|
{{#if description}}
|
|
|
|
{{description}}
|
2014-12-23 11:50:59 +00:00
|
|
|
{{else}}
|
2016-05-08 09:01:25 +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>
|
2016-05-08 09:01:25 +00:00
|
|
|
{{/tag}}
|
2014-03-19 00:10:43 +00:00
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
2017-05-15 20:03:47 +00:00
|
|
|
{{!-- The main content area --}}
|
|
|
|
<main id="site-main" class="site-main outer" role="main">
|
|
|
|
<div class="inner">
|
2014-03-19 00:10:43 +00:00
|
|
|
|
2017-05-15 20:03:47 +00:00
|
|
|
{{!-- The tag below includes the post loop - partials/loop.hbs --}}
|
|
|
|
{{> "loop"}}
|
2014-03-19 00:10:43 +00:00
|
|
|
|
2017-05-15 20:03:47 +00:00
|
|
|
</div>
|
2014-12-23 11:50:59 +00:00
|
|
|
</main>
|